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