wok rev 20433

Add python-tornado
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 31 15:56:57 2018 +0200 (2018-08-31)
parents fb9df69f8567
children fdcb0df8a6b7
files python-tornado/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/python-tornado/receipt	Fri Aug 31 15:56:57 2018 +0200
     1.3 @@ -0,0 +1,26 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="python-tornado"
     1.7 +VERSION="5.1.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="A web framework and asynchronous networking library"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="Apache"
    1.12 +WEB_SITE="http://www.tornadoweb.org/"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WGET_URL="https://github.com/tornadoweb/tornado/archive/v$VERSION.tar.gz"
    1.15 +
    1.16 +DEPENDS="python"
    1.17 +BUILD_DEPENDS="python-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	python setup.py install --prefix=/usr --root=$DESTDIR
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	cp -a $install/usr $fs/
    1.29 +}