24 lines
653 B
Makefile
24 lines
653 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# sbc
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
SBC_VERSION = 2.0
|
||
|
SBC_SOURCE = sbc-$(SBC_VERSION).tar.xz
|
||
|
SBC_SITE = $(BR2_KERNEL_MIRROR)/linux/bluetooth
|
||
|
SBC_INSTALL_STAGING = YES
|
||
|
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))
|