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