wok view libmpdclient/receipt @ rev 14854

Up: tor (2.3.25)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 20 11:14:14 2013 +0000 (2013-07-20)
parents 9bf2c7a08c3d
children 8f447cf2eee5
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpdclient"
4 VERSION="2.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="C & C++ API library for MPD."
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:libmpdclient"
10 WGET_URL="$SF_MIRROR/musicpd/$VERSION/$TARBALL"
12 DEPENDS=""
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }