wok view python-reportlab/receipt @ rev 15679

lxc: add depend for linux-lxc
Add linux-lxc
author Stanislas Leduc <shann@slitaz.org>
date Fri Dec 20 20:12:42 2013 +0100 (2013-12-20)
parents f3327707164a
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="python-reportlab"
4 VERSION="2_3"
5 CATEGORY="development"
6 SHORT_DESC="PDF generation solution."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 SOURCE="ReportLab"
10 TARBALL="${SOURCE}_$VERSION.tar.gz"
11 WEB_SITE="http://www.reportlab.org/"
12 WGET_URL="${WEB_SITE}ftp/$TARBALL"
14 DEPENDS="python freetype"
15 BUILD_DEPENDS="python python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ln -s ${SOURCE}_$VERSION $src
21 cd $src
22 python setup.py build &&
23 python setup.py install --root=$DESTDIR
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 }
32 clean_wok()
33 {
34 rm -rf ${PACKAGE}_$VERSION
35 }
37 # Remove old package.
38 post_install()
39 {
40 rm -rf $1/var/lib/tazpkg/installed/reportlab
41 }