2016-12-03 20:17:34 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# 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-samplerate \
|
|
|
|
--disable-avcodec \
|
|
|
|
--disable-jack \
|
|
|
|
--disable-fftw3 \
|
|
|
|
--disable-fftw3f
|
|
|
|
|
2016-12-03 20:17:35 +08:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
|
|
AUBIO_DEPENDENCIES += libsndfile
|
|
|
|
AUBIO_CONF_OPTS += --enable-sndfile
|
|
|
|
else
|
|
|
|
AUBIO_CONF_OPTS += --disable-sndfile
|
|
|
|
endif
|
|
|
|
|
2016-12-03 20:17:34 +08:00
|
|
|
$(eval $(waf-package))
|