wok view libmpd/receipt @ rev 10334

gens-gs: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 01:20:15 2011 +0000 (2011-05-22)
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 }