wok-next view airoscript-ng/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 0a0fb13a2e64
children 01a07ddd852f
line source
1 # SliTaz package receipt.
3 PACKAGE="airoscript-ng"
4 VERSION="1.0rc1"
5 CATEGORY="network"
6 SHORT_DESC="Airoscript ng"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="bash"
9 SOURCE="Airoscript-ng"
10 TARBALL="${SOURCE}${VERSION%rc1}.tgz"
11 WEB_SITE="http://code.google.com/p/airoscript/"
12 WGET_URL="http://airoscript.googlecode.com/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -Np0 -i $stuff/path.patch
19 patch -Np0 -i $stuff/makefile.patch
20 make -j1 prefix=$DESTDIR/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $_pkg/usr/sbin $fs/usr
28 cp -a $_pkg/usr/share/airoscript-ng $fs/usr/share
29 cp -a $_pkg/usr/etc $fs/etc
30 mv $fs/etc/screenrc $fs/usr/share/airoscript-ng/
31 cd $fs/etc
32 patch -Np0 -i $stuff/config.patch
33 }