wok view libmpd/receipt @ rev 21747

tazboot: spare 2k
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 14 17:17:16 2019 +0200 (2019-06-14)
parents 9736e603f8a1
children 2a47d3b3f4de
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpd"
4 VERSION="11.8.17"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="Signal based wrapper around libmpdclient"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://gmpclient.org/"
11 WGET_URL="http://download.sarine.nl/Programs/gmpc/${VERSION%.*}/$TARBALL"
12 HOST_ARCH="i486 arm"
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 }