wok view python-pytz/receipt @ rev 8419

Up: xorg-xineramaproto to 1.2.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 05 17:45:43 2011 +0000 (2011-02-05)
parents
children 32fcbb9be6bb
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pytz"
4 SOURCE="pytz"
5 VERSION="2006p"
6 CATEGORY="development"
7 SHORT_DESC="World Timezone Definitions for Python."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 DEPENDS="python"
10 BUILD_DEPENDS="python-dev python"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://pytz.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py build &&
20 python setup.py install --root=$PWD/_pkg
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs
27 cp -a $_pkg/usr $fs
28 }
30 # Remove old package.
31 post_install()
32 {
33 rm -rf $1/var/lib/tazpkg/installed/pytz
34 }