wok view libmpdclient/receipt @ rev 7687

Added --disable-static to vte. Need for its terminal programs to work in user mode.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Dec 17 18:23:22 2010 +0000 (2010-12-17)
parents 6e30a94d60fe
children 9bf2c7a08c3d
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpdclient"
4 VERSION="2.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="C & C++ API library for MPD."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:libmpdclient"
11 WGET_URL="$SF_MIRROR/musicpd/$VERSION/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }