wok view libmpd/receipt @ rev 13805

Up: gimp (2.8.2)
author Alexander Medvedev <devl547@gmail.com>
date Sun Jan 06 05:37:33 2013 +0300 (2013-01-06)
parents 562586658eb4
children 4904e3d374a9
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 $CONFIGURE_ARGS &&
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 }