mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
be71097452
- Update hash of COPYING (year updated withb28fdab79d
) - threads is an optional dependency since9ef0d37deb
- openssl dropped withc5b545146d
https://github.com/dbry/WavPack/releases/tag/5.7.0 https://github.com/dbry/WavPack/blob/5.7.0/NEWS Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# wavpack
|
|
#
|
|
################################################################################
|
|
|
|
WAVPACK_VERSION = 5.7.0
|
|
WAVPACK_SITE = \
|
|
https://github.com/dbry/WavPack/releases/download/$(WAVPACK_VERSION)
|
|
WAVPACK_SOURCE = wavpack-$(WAVPACK_VERSION).tar.xz
|
|
WAVPACK_INSTALL_STAGING = YES
|
|
WAVPACK_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),,libiconv)
|
|
WAVPACK_LICENSE = BSD-3-Clause
|
|
WAVPACK_LICENSE_FILES = COPYING
|
|
WAVPACK_CPE_ID_VENDOR = wavpack
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
WAVPACK_CONF_OPTS += LIBS=-liconv
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
WAVPACK_CONF_OPTS += --enable-threads
|
|
else
|
|
WAVPACK_CONF_OPTS += --disable-threads
|
|
endif
|
|
|
|
# WavPack "autodetects" CPU type to enable ASM code. However, the assembly code
|
|
# for ARM is written for ARMv7 only and building WavPack for an ARM-non-v7
|
|
# architecture will fail. We explicitly enable ASM for the supported
|
|
# architectures x86, x64 and ARMv7 and disable it for all others.
|
|
ifeq ($(BR2_i386)$(BR2_x86_64)$(BR2_ARM_CPU_ARMV7A),y)
|
|
WAVPACK_CONF_OPTS += --enable-asm
|
|
else
|
|
WAVPACK_CONF_OPTS += --disable-asm
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|