wok-next view python-flup/receipt @ rev 20444
python-pip and setuptools are parts of python package.
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Mon Feb 26 04:46:49 2018 +0200 (2018-02-26) | 
| parents | 16df76e1fc6a | 
| children | 9b3461bf373c | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="python-flup"
     4 VERSION="1.0.2"
     5 CATEGORY="network"
     6 SHORT_DESC="Random collection of WSGI modules for Python."
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="BSD"
     9 SOURCE="flup"
    10 TARBALL="$SOURCE-$VERSION.tar.gz"
    11 WEB_SITE="http://trac.saddi.com/flup"
    12 WGET_URL="http://www.saddi.com/software/flup/dist/$TARBALL"
    14 DEPENDS="python"
    15 BUILD_DEPENDS="python python-dev python-distribute"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	python setup.py build &&
    21 	python setup.py install --root=$DESTDIR
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs
    28 	cp -a $install/usr $fs
    29 }