wok view python-django/receipt @ rev 15164

Up xorg-xf86-input-void (1.4.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 18:48:58 2013 +0000 (2013-08-15)
parents d65df587bc17
children fd4f1e692109
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 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="https://www.djangoproject.com/"
11 WGET_URL="https://www.djangoproject.com/m/releases/1.5/$TARBALL"
12 DEPENDS="python python-pysqlite"
13 SUGGESTED="python-mysql"
14 BUILD_DEPENDS="setuptools wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr $fs
28 }
30 # Remove old package.
31 post_install()
32 {
33 rm -rf $1/var/lib/tazpkg/installed/django
34 }