blob: dced3ca353ea3806b69459bb8bda2beed81bf8e4 (
plain)
1 # Description: Bluetooth low-complexity, subband codec library
2 # URL: http://www.bluez.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=sbc
7 version=1.4
8 release=1
9 source=(https://www.kernel.org/pub/linux/bluetooth/sbc-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./configure \
14 --prefix=/usr \
15 --disable-{static,tester,tools}
16 make
17 make DESTDIR=$PKG install
18 }
|