comparison python/py-daemon/py-daemon.sh @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents 329cad4dc6b0
children 8580d997f05b
comparison
equal deleted inserted replaced
605:860ab66f5f71 606:25cecc6dca48
25 PKGDEPENDS="python/python" 25 PKGDEPENDS="python/python"
26 26
27 build() 27 build()
28 { 28 {
29 rm -rf python-daemon-$PKGVERSION 29 rm -rf python-daemon-$PKGVERSION
30 tar xvaf python-daemon-$PKGVERSION.tar.gz 30 tar xvf python-daemon-$PKGVERSION.tar.gz
31 pushd python-daemon-$PKGVERSION 31 cd python-daemon-$PKGVERSION
32 32
33 python setup.py install --root=${DESTDIR:-/} -O1 33 python setup.py install --root=${DESTDIR:-/} -O1
34 34
35 popd 35 cd ..
36 rm -rf python-daemon-$PKGVERSION 36 rm -rf python-daemon-$PKGVERSION
37 } 37 }