wok view libmpd/receipt @ rev 5291

Up: All Xorg proto (rel 7.5 and up)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 18 21:56:48 2010 +0200 (2010-04-18)
parents 370eb8b7f05e
children 562586658eb4
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpd"
4 VERSION="0.19.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 WGET_URL="http://download.sarine.nl/Programs/gmpc/$VERSION/$TARBALL"
12 TAGS=""
14 # Rules to configure and make the package.
16 compile_rules() {
17 cd $src
18 ./configure --prefix=/usr &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
28 }