23 lines
468 B
Plaintext
23 lines
468 B
Plaintext
# Description: Bluetooth low-complexity, subband codec library
|
|
# URL: http://www.bluez.org/
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on: libsndfile
|
|
|
|
name=sbc
|
|
version=1.1
|
|
release=1
|
|
source=(http://www.kernel.org/pub/linux/bluetooth/sbc-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static \
|
|
--disable-tester \
|
|
--disable-tools
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|