wok view python-django/receipt @ rev 15953

arm: fix file cross compilation and add testsuite
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 15:49:23 2014 +0100 (2014-02-23)
parents ca4495712bef
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="python-django"
4 SOURCE="Django"
5 VERSION="1.5.1"
6 CATEGORY="development"
7 SHORT_DESC="Django is a high-level Python Web framework."
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="BSD"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://www.djangoproject.com/"
12 WGET_URL="https://www.djangoproject.com/m/releases/1.5/$TARBALL"
13 SUGGESTED="python-mysql"
15 DEPENDS="python python-pysqlite"
16 BUILD_DEPENDS="setuptools wget"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
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/usr
29 cp -a $install/usr $fs
30 }
32 # Remove old package.
33 post_install()
34 {
35 rm -rf $1/var/lib/tazpkg/installed/django
36 }