6264dfae49
Since the python 3.11 version bump [1], the waf script bundled in aubio 0.4.9 can't be executed anymore due to a waf bug [2]. Use the waf script provided by the Buildroot waf package infrastructure after removing the old waf script and its libraries. Fixes: http://autobuild.buildroot.org/results/e2b/e2be18415ca794c68e708f2fdfd0a1a1ff5be714 [1]738500c296
[2]68997828c8
Signed-off-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
75 lines
2.0 KiB
Makefile
75 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# aubio
|
|
#
|
|
################################################################################
|
|
|
|
AUBIO_VERSION = 0.4.9
|
|
AUBIO_SITE = https://aubio.org/pub
|
|
AUBIO_SOURCE = aubio-$(AUBIO_VERSION).tar.bz2
|
|
AUBIO_LICENSE = GPL-3.0+
|
|
AUBIO_LICENSE_FILES = COPYING
|
|
AUBIO_INSTALL_STAGING = YES
|
|
|
|
AUBIO_DEPENDENCIES = host-pkgconf
|
|
AUBIO_CONF_OPTS = \
|
|
--disable-docs \
|
|
--disable-atlas
|
|
|
|
# The waf script bundled in aubio 0.4.9 is too old for python3.11
|
|
# Similar issue with Jack:
|
|
# https://github.com/jackaudio/jack2/issues/898
|
|
AUBIO_NEEDS_EXTERNAL_WAF = YES
|
|
|
|
# The old waf script bundled in aubio 0.4.9 need to be removed first.
|
|
define AUBIO_REMOVE_OLD_WAF
|
|
$(RM) -fr $(@D)/waf $(@D)/waflib
|
|
endef
|
|
AUBIO_POST_EXTRACT_HOOKS = AUBIO_REMOVE_OLD_WAF
|
|
|
|
# Add --notests for each build step to avoid running unit tests on the
|
|
# build machine.
|
|
AUBIO_WAF_OPTS = --notests
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
AUBIO_DEPENDENCIES += libsndfile
|
|
AUBIO_CONF_OPTS += --enable-sndfile
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-sndfile
|
|
endif
|
|
|
|
# Could not compile aubio in double precision mode with libsamplerate
|
|
ifeq ($(BR2_PACKAGE_LIBSAMPLERATE):$(BR2_PACKAGE_FFTW_DOUBLE),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
|
|
|
|
# fftw3 require double otherwise it will look for fftw3f
|
|
ifeq ($(BR2_PACKAGE_FFTW_DOUBLE),y)
|
|
AUBIO_CONF_OPTS += --enable-fftw3 --enable-double
|
|
AUBIO_DEPENDENCIES += fftw-double
|
|
else ifeq ($(BR2_PACKAGE_FFTW_SINGLE),y)
|
|
AUBIO_CONF_OPTS += --enable-fftw3f --disable-double
|
|
AUBIO_DEPENDENCIES += fftw-single
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-fftw3
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE),y)
|
|
AUBIO_DEPENDENCIES += ffmpeg
|
|
AUBIO_CONF_OPTS += --enable-avcodec
|
|
else
|
|
AUBIO_CONF_OPTS += --disable-avcodec
|
|
endif
|
|
|
|
$(eval $(waf-package))
|