wok-next view libmpd/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 8752c40cc534
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpd"
4 VERSION="0.20.0"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="Signal based wrapper around libmpdclient"
8 WEB_SITE="http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 DEPENDS="glib"
11 BUILD_DEPENDS="pkg-config glib-dev"
12 WGET_URL="http://download.sarine.nl/Programs/gmpc/$VERSION/$TARBALL"
13 TAGS=""
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
29 }