wok view python-cython/receipt @ rev 16872

Up gdk-pixbuf gdk-pixbuf-dev (2.27.3)
author Yuri Pourre <yuripourre@gmail.com>
date Sun Jul 13 12:53:21 2014 -0300 (2014-07-13)
parents 0303b344c702
children 16df76e1fc6a
line source
1 # SliTaz package receipt.
3 PACKAGE="python-cython"
4 VERSION="0.17.1"
5 CATEGORY="development"
6 SHORT_DESC="Language to write C extensions for Python."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="Apache"
9 SOURCE="Cython"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://cython.org/"
12 WGET_URL="http://cython.org/release/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="$DEPENDS python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py build &&
22 python setup.py install --root=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs
29 cp -a $install/usr $fs
30 }