wok view libmpdclient/receipt @ rev 19891

Add postgresql-contrib
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 05 16:25:04 2017 +0200 (2017-04-05)
parents 1a0b3262dccf
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="libmpdclient"
4 VERSION="2.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="C & C++ API library for MPD."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:libmpdclient"
11 WGET_URL="http://www.musicpd.org/download/$PACKAGE/2/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --disable-documentation \
22 $CONFIGURE_ARGS &&
23 make && make 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 }