wok annotate pytz/receipt @ rev 1441
Update BUILD_DEPENDS for eet lxappearance and ncmpc
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 02 16:24:12 2008 +0000 (2008-10-02) |
parents | |
children | 7869c27eeaf7 |
rev | line source |
---|---|
pascal@1331 | 1 # SliTaz package receipt. |
pascal@1331 | 2 |
pascal@1331 | 3 PACKAGE="pytz" |
pascal@1331 | 4 VERSION="2006p" |
pascal@1331 | 5 CATEGORY="development" |
pascal@1331 | 6 SHORT_DESC="World Timezone Definitions for Python." |
pascal@1331 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1331 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@1331 | 9 WEB_SITE="http://pytz.sourceforge.net/" |
pascal@1331 | 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@1331 | 11 |
pascal@1331 | 12 # Rules to configure and make the package. |
pascal@1331 | 13 compile_rules() |
pascal@1331 | 14 { |
pascal@1331 | 15 cd $src |
pascal@1331 | 16 python setup.py build |
pascal@1331 | 17 python setup.py install --root=$PWD/_pkg |
pascal@1331 | 18 } |
pascal@1331 | 19 |
pascal@1331 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1331 | 21 genpkg_rules() |
pascal@1331 | 22 { |
pascal@1331 | 23 mkdir -p $fs |
pascal@1331 | 24 cp -a $_pkg/usr $fs |
pascal@1331 | 25 } |
pascal@1331 | 26 |