wok view python-cython/receipt @ rev 15799

fail2ban: update WGET_URL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 19 16:07:24 2014 +0000 (2014-01-19)
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 }