wok view libsbc/receipt @ rev 21869

busybox/command_not_found: use $PATH
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 25 10:59:33 2019 +0200 (2019-09-25)
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 }