comparison python/py-isodate/py-isodate.sh @ 1216:6710613b88b9

misc: remove build function
author David Demelier <markand@malikania.fr>
date Wed, 29 Sep 2021 13:49:32 +0200
parents 297b5eef115e
children 57dc83a39b13
comparison
equal deleted inserted replaced
1215:3214f7fed454 1216:6710613b88b9
22 PKGLICENSE="BSD" 22 PKGLICENSE="BSD"
23 PKGSUMMARY="An ISO 8601 date/time/duration parser and formatter" 23 PKGSUMMARY="An ISO 8601 date/time/duration parser and formatter"
24 PKGDOWNLOAD="https://files.pythonhosted.org/packages/source/i/isodate/isodate-$PKGVERSION.tar.gz" 24 PKGDOWNLOAD="https://files.pythonhosted.org/packages/source/i/isodate/isodate-$PKGVERSION.tar.gz"
25 PKGDEPENDS="python" 25 PKGDEPENDS="python"
26 26
27 build() 27 rm -rf isodate-$PKGVERSION
28 { 28 tar xvf isodate-$PKGVERSION.tar.gz
29 rm -rf isodate-$PKGVERSION 29 cd isodate-$PKGVERSION
30 tar xvf isodate-$PKGVERSION.tar.gz
31 cd isodate-$PKGVERSION
32 30
33 python setup.py install --root=$DESTDIR --prefix=/. 31 python setup.py install --root=$DESTDIR --prefix=/.
34 32
35 cd .. 33 cd ..
36 rm -rf isodate-$PKGVERSION 34 rm -rf isodate-$PKGVERSION
37 }