06d8abd090
Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
694 B
Makefile
31 lines
694 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-samplerate \
|
|
--disable-avcodec \
|
|
--disable-jack \
|
|
--disable-fftw3 \
|
|
--disable-fftw3f
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
AUBIO_DEPENDENCIES += libsndfile
|
|
AUBIO_CONF_OPTS += --enable-sndfile
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-sndfile
|
|
endif
|
|
|
|
$(eval $(waf-package))
|