wok view libsbc/receipt @ rev 21965

updated squirrelmail-msg_flags (1.4.15a-1.4.3 -> 1.4.20-1.4.3)
author Hans-G?nter Theisgen
date Thu Oct 10 16:37:05 2019 +0100 (2019-10-10)
parents
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="libsbc"
4 VERSION="1.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="Digital audio encoder and decoder for Bluetooth audio output devices"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.bluez.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="https://www.kernel.org/pub/linux/bluetooth/sbc-$VERSION.tar.xz"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure \
17 --prefix=/usr \
18 --disable-static \
19 --disable-tester \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }