e40cdee9cc
Add optional build of rfcomm which requires readline. Update license hash as authorship has been updated in the license file. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# bluez-alsa
|
|
#
|
|
################################################################################
|
|
|
|
BLUEZ_ALSA_VERSION = v1.3.0
|
|
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))
|