wok-next view python-reportlab/receipt @ rev 10721

postfix: Fixed uid for postdrop group and postfix user. We should use uid 75 for postfix user and uid 73 for postdrop. Postdrop group was seting itself to 1000 uid before.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 18:20:04 2011 +0000 (2011-05-28)
parents 983e91358a71
children bf4a09ef1d2e
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 SOURCE="ReportLab"
9 TARBALL="${SOURCE}_$VERSION.tar.gz"
10 WEB_SITE="http://www.reportlab.org/"
11 WGET_URL="${WEB_SITE}ftp/$TARBALL"
12 DEPENDS="python freetype"
13 BUILD_DEPENDS="python python-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ln -s ${SOURCE}_$VERSION $src
19 cd $src
20 python setup.py build &&
21 python setup.py install --root=$PWD/_pkg
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $_pkg/usr $fs
28 }
30 clean_wok()
31 {
32 rm -rf ${PACKAGE}_$VERSION
33 }
35 # Remove old package.
36 post_install()
37 {
38 rm -rf $1/var/lib/tazpkg/installed/reportlab
39 }