wok view python-dateutil/receipt @ rev 8039

Fix: most xfce4 apps need intltool to compile
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 20 15:02:14 2011 +0100 (2011-01-20)
parents
children 636bb875224c
line source
1 # SliTaz package receipt.
3 PACKAGE="python-dateutil"
4 VERSION="1.4.1"
5 CATEGORY="development"
6 SHORT_DESC="Extensions to the standart python 2.3+ datetime module"
7 MAINTAINER="claudinei@slitaz.org"
8 DEPENDS="python"
9 BUILD_DEPENDS="python python-dev setuptools"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://labix.org/python-dateutil"
12 WGET_URL="http://labix.org/download/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py install --root=$PWD/_pkg
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 for file in `find $_pkg | grep 'pyc$'`; do
25 rm $file
26 done
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 }