c84cd8b1d1
cpe:2.3🅰️xiph:speex is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Axiph%3Aspeex Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
961 B
Makefile
37 lines
961 B
Makefile
################################################################################
|
|
#
|
|
# speex
|
|
#
|
|
################################################################################
|
|
|
|
SPEEX_VERSION = 1.2.0
|
|
SPEEX_SITE = https://downloads.xiph.org/releases/speex
|
|
SPEEX_LICENSE = BSD-3-Clause
|
|
SPEEX_LICENSE_FILES = COPYING
|
|
SPEEX_CPE_ID_VENDOR = xiph
|
|
SPEEX_INSTALL_STAGING = YES
|
|
SPEEX_DEPENDENCIES = host-pkgconf libogg
|
|
SPEEX_CONF_OPTS = \
|
|
--enable-fixed-point
|
|
|
|
ifeq ($(BR2_PACKAGE_SPEEXDSP),y)
|
|
SPEEX_DEPENDENCIES += speexdsp
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SPEEX_ARM4),y)
|
|
SPEEX_CONF_OPTS += --enable-arm4-asm
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SPEEX_ARM5E),y)
|
|
SPEEX_CONF_OPTS += --enable-arm5e-asm
|
|
endif
|
|
|
|
define SPEEX_LIBTOOL_FIXUP
|
|
$(SED) 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $(@D)/libtool
|
|
$(SED) 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $(@D)/libtool
|
|
endef
|
|
|
|
SPEEX_POST_CONFIGURE_HOOKS += SPEEX_LIBTOOL_FIXUP
|
|
|
|
$(eval $(autotools-package))
|