wok-6.x annotate libmpdclient/receipt @ rev 23657
updated socat (2.0.0-b8 -> 2.0.0-b9)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 22 07:33:31 2020 +0100 (2020-04-22) |
parents | 96e3913e7482 |
children | 34e801e0eb52 |
rev | line source |
---|---|
erjo@4759 | 1 # SliTaz package receipt. |
erjo@4759 | 2 |
erjo@4759 | 3 PACKAGE="libmpdclient" |
devl547@19613 | 4 VERSION="2.10" |
erjo@4759 | 5 CATEGORY="system-tools" |
erjo@4759 | 6 SHORT_DESC="C & C++ API library for MPD." |
erjo@4759 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15473 | 8 LICENSE="BSD" |
devl547@19613 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
erjo@4759 | 10 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:libmpdclient" |
pascal@20671 | 11 WGET_URL="https://www.musicpd.org/download/$PACKAGE/2/$TARBALL" |
pankso@16103 | 12 HOST_ARCH="i486 arm" |
erjo@4759 | 13 |
pascal@14714 | 14 DEPENDS="" |
pascal@14714 | 15 |
erjo@4759 | 16 # Rules to configure and make the package. |
erjo@4759 | 17 compile_rules() |
erjo@4759 | 18 { |
erjo@4759 | 19 cd $src |
erjo@4759 | 20 ./configure \ |
devl547@19613 | 21 --disable-documentation \ |
erjo@4759 | 22 $CONFIGURE_ARGS && |
pankso@16103 | 23 make && make 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 |