wok view libmpd/receipt @ rev 16177

8086tiny: nasm is native, do not use it
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 30 16:34:03 2014 +0000 (2014-03-30)
parents b7319995b37e
children 69c80106a6af
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpd"
4 VERSION="0.20.0"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="Signal based wrapper around libmpdclient"
9 WEB_SITE="http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://download.sarine.nl/Programs/gmpc/$VERSION/$TARBALL"
12 TAGS=""
14 DEPENDS="glib"
15 BUILD_DEPENDS="pkg-config glib-dev"
17 # Rules to configure and make the package.
19 compile_rules() {
20 cd $src
21 ./configure --prefix=/usr $CONFIGURE_ARGS &&
22 make &&
23 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 }