package/sbc: add config option to control tools build

libsndfile is only needed by the sbctester utility and the library can
be built without this dependency.

Add a config option to cover not just sbctester but the command-line
utilities as well.  While the utilities may be useful for debugging,
normal usage will only need libsbc and these applications can be
omitted.

Signed-off-by: John Keeping <john@metanate.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
John Keeping 2022-10-20 13:15:21 +01:00 committed by Thomas Petazzoni
parent d31447bce4
commit 3d8b6e9e25
2 changed files with 20 additions and 3 deletions

View File

@ -1,8 +1,17 @@
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/
if BR2_PACKAGE_SBC
config BR2_PACKAGE_SBC_TOOLS
bool "tools"
select BR2_PACKAGE_LIBSNDFILE
help
Build the command-line SBC tools as well as the library.
endif

View File

@ -8,8 +8,16 @@ SBC_VERSION = 2.0
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 = GPL-2.0+ (programs), LGPL-2.1+ (library)
SBC_DEPENDENCIES = host-pkgconf
SBC_LICENSE := LGPL-2.1+ (library)
SBC_LICENSE_FILES = COPYING COPYING.LIB
ifeq ($(BR2_PACKAGE_SBC_TOOLS),y)
SBC_DEPENDENCIES += libsndfile
SBC_CONF_OPTS += --enable-tools --enable-tester
SBC_LICENSE += , GPL-2.0+ (programs)
else
SBC_CONF_OPTS += --disable-tools --disable-tester
endif
$(eval $(autotools-package))