wok view libmpd/receipt @ rev 4725

libbboost-dev: fix WGET_SOURCE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 05 16:19:03 2010 +0100 (2010-01-05)
parents
children 8752c40cc534
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 WGET_URL="http://download.sarine.nl/Programs/gmpc/$VERSION/$TARBALL"
11 TAGS=""
13 # Rules to configure and make the package.
15 compile_rules() {
16 cd $src
17 ./configure --prefix=/usr &&
18 make &&
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
27 }