comparison python/py-pygments/py-pygments.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
24 PKGDEPENDS="python" 24 PKGDEPENDS="python"
25 25
26 build() 26 build()
27 { 27 {
28 rm -rf Pygments-$PKGVERSION 28 rm -rf Pygments-$PKGVERSION
29 tar xvaf Pygments-$PKGVERSION.tar.gz 29 tar xvf Pygments-$PKGVERSION.tar.gz
30 pushd Pygments-$PKGVERSION 30 cd Pygments-$PKGVERSION
31 31
32 python setup.py install --root=${DESTDIR:-/} 32 python setup.py install --root=${DESTDIR:-/}
33 33
34 popd 34 cd ..
35 rm -rf Pygments-$PKGVERSION 35 rm -rf Pygments-$PKGVERSION
36 } 36 }