wok-next view xfmpc/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 a3ce54180620
children 73641efed1cc
line source
1 # SliTaz package receipt.
3 PACKAGE="xfmpc"
4 VERSION="0.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MPD client for Xfce."
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://goodies.xfce.org/projects/applications/xfmpc"
10 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="libxfcegui4 libxfce4util libmpd startup-notification"
13 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev libmpd-dev intltool \
14 startup-notification-dev util-linux-ng-uuid-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }