sbc: initial commit, version 1.4

This commit is contained in:
Tim Biermann 2019-08-23 22:34:06 +00:00
parent a5366c41d8
commit 286134ae0f
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 34 additions and 0 deletions

11
sbc/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/sbc/
-rw-r--r-- root/root usr/include/sbc/sbc.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libsbc.la
lrwxrwxrwx root/root usr/lib/libsbc.so -> libsbc.so.1.2.2
lrwxrwxrwx root/root usr/lib/libsbc.so.1 -> libsbc.so.1.2.2
-rwxr-xr-x root/root usr/lib/libsbc.so.1.2.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/sbc.pc

5
sbc/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39l7BFSEaIosBv/DVVQ6HlYU5FyS8oj36nIJUa+rirbfhChUe7KJZGUJzNK0YRgX9O1EGFawUifzpRudfXRZmAE=
SHA256 (Pkgfile) = 48a2f96880a097ff2356b05c4fc9ab169ee295a3ea59d9c63e593384f54aadee
SHA256 (.footprint) = 83cb1017f30a31515dd65150e200c808312419ddcd8039709f56c1aef570244d
SHA256 (sbc-1.4.tar.xz) = 518bf46e6bb3dc808a95e1eabad26fdebe8a099c1e781c27ed7fca6c2f4a54c9

18
sbc/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Bluetooth low-complexity, subband codec library
# URL: http://www.bluez.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=sbc
version=1.4
release=1
source=(http://www.kernel.org/pub/linux/bluetooth/sbc-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-{static,tester,tools}
make
make DESTDIR=$PKG install
}