3909197ace
Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
43 lines
954 B
Makefile
43 lines
954 B
Makefile
################################################################################
|
|
#
|
|
# aubio
|
|
#
|
|
################################################################################
|
|
|
|
AUBIO_VERSION = 0.4.3
|
|
AUBIO_SITE = https://aubio.org/pub
|
|
AUBIO_SOURCE = aubio-$(AUBIO_VERSION).tar.bz2
|
|
AUBIO_LICENSE = GPLv3+
|
|
AUBIO_LICENSE_FILES = COPYING
|
|
AUBIO_INSTALL_STAGING = YES
|
|
|
|
AUBIO_CONF_OPTS = \
|
|
--disable-docs \
|
|
--disable-atlas \
|
|
--disable-avcodec \
|
|
--disable-fftw3 \
|
|
--disable-fftw3f
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
AUBIO_DEPENDENCIES += libsndfile
|
|
AUBIO_CONF_OPTS += --enable-sndfile
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-sndfile
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSAMPLERATE),y)
|
|
AUBIO_DEPENDENCIES += libsamplerate
|
|
AUBIO_CONF_OPTS += --enable-samplerate
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-samplerate
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JACK2),y)
|
|
AUBIO_DEPENDENCIES += jack2
|
|
AUBIO_CONF_OPTS += --enable-jack
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-jack
|
|
endif
|
|
|
|
$(eval $(waf-package))
|