Bump buildroot to 2019.02
This commit is contained in:
50
bsp/buildroot/package/bluez-alsa/bluez-alsa.mk
Normal file
50
bsp/buildroot/package/bluez-alsa/bluez-alsa.mk
Normal file
@@ -0,0 +1,50 @@
|
||||
################################################################################
|
||||
#
|
||||
# bluez-alsa
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BLUEZ_ALSA_VERSION = v1.3.1
|
||||
BLUEZ_ALSA_SITE = $(call github,Arkq,bluez-alsa,$(BLUEZ_ALSA_VERSION))
|
||||
BLUEZ_ALSA_LICENSE = MIT
|
||||
BLUEZ_ALSA_LICENSE_FILES = LICENSE.txt
|
||||
BLUEZ_ALSA_DEPENDENCIES = alsa-lib bluez5_utils libglib2 sbc host-pkgconf
|
||||
|
||||
# git repo, no configure
|
||||
BLUEZ_ALSA_AUTORECONF = YES
|
||||
|
||||
# Autoreconf requires an existing m4 directory
|
||||
define BLUEZ_ALSA_MKDIR_M4
|
||||
mkdir -p $(@D)/m4
|
||||
endef
|
||||
BLUEZ_ALSA_POST_PATCH_HOOKS += BLUEZ_ALSA_MKDIR_M4
|
||||
|
||||
BLUEZ_ALSA_CONF_OPTS = \
|
||||
--enable-aplay \
|
||||
--disable-debug-time \
|
||||
--disable-pcm-test \
|
||||
--with-alsaplugindir=/usr/lib/alsa-lib \
|
||||
--with-alsadatadir=/usr/share/alsa
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FDK_AAC),y)
|
||||
BLUEZ_ALSA_DEPENDENCIES += fdk-aac
|
||||
BLUEZ_ALSA_CONF_OPTS += --enable-aac
|
||||
else
|
||||
BLUEZ_ALSA_CONF_OPTS += --disable-aac
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BLUEZ_ALSA_HCITOP),y)
|
||||
BLUEZ_ALSA_DEPENDENCIES += libbsd ncurses
|
||||
BLUEZ_ALSA_CONF_OPTS += --enable-hcitop
|
||||
else
|
||||
BLUEZ_ALSA_CONF_OPTS += --disable-hcitop
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BLUEZ_ALSA_RFCOMM),y)
|
||||
BLUEZ_ALSA_DEPENDENCIES += readline
|
||||
BLUEZ_ALSA_CONF_OPTS += --enable-rfcomm
|
||||
else
|
||||
BLUEZ_ALSA_CONF_OPTS += --disable-rfcomm
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user