sbc: new package

Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Gustavo Zacarias 2015-12-14 08:29:44 -03:00 committed by Thomas Petazzoni
parent e10a981b6c
commit ea614ccdc7
4 changed files with 26 additions and 0 deletions

View file

@ -734,6 +734,7 @@ menu "Audio/Sound"
source "package/opus/Config.in"
source "package/opusfile/Config.in"
source "package/portaudio/Config.in"
source "package/sbc/Config.in"
source "package/speex/Config.in"
source "package/taglib/Config.in"
source "package/tinyalsa/Config.in"

8
package/sbc/Config.in Normal file
View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_SBC
bool "sbc"
select BR2_PACKAGE_LIBSNDFILE
help
An audio codec to connect bluetooth high quality audio
devices like headphones or loudspeakers.
http://www.bluez.org/

2
package/sbc/sbc.hash Normal file
View file

@ -0,0 +1,2 @@
# From https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
sha256 e61022cf576f14190241e7071753fdacdce5d1dea89ffd704110fc50be689309 sbc-1.3.tar.xz

15
package/sbc/sbc.mk Normal file
View file

@ -0,0 +1,15 @@
################################################################################
#
# sbc
#
################################################################################
SBC_VERSION = 1.3
SBC_SOURCE = sbc-$(SBC_VERSION).tar.xz
SBC_SITE = $(BR2_KERNEL_MIRROR)/linux/bluetooth
SBC_INSTALL_STAGING = YES
SBC_DEPENDENCIES = libsndfile host-pkgconf
SBC_LICENSE = GPLv2+ (programs), LGPLv2.1+ (library)
SBC_LICENSE_FILES = COPYING COPYING.LIB
$(eval $(autotools-package))