2022-01-27 20:23:08 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# sord
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
SORD_VERSION = 0.16.8
|
|
|
|
SORD_SITE = https://download.drobilla.net
|
|
|
|
SORD_SOURCE = sord-$(SORD_VERSION).tar.bz2
|
|
|
|
SORD_LICENSE = ISC
|
|
|
|
SORD_LICENSE_FILES = COPYING
|
|
|
|
SORD_DEPENDENCIES = host-pkgconf serd
|
|
|
|
SORD_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
|
|
SORD_DEPENDENCIES += pcre
|
|
|
|
endif
|
|
|
|
|
|
|
|
SORD_CONF_OPTS += --no-coverage
|
|
|
|
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
SORD_CONF_OPTS += --static --no-shared --static-progs
|
|
|
|
endif
|
|
|
|
|
2022-02-22 21:37:46 +01:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),)
|
|
|
|
SORD_CONF_OPTS += --no-threads
|
|
|
|
endif
|
|
|
|
|
2022-01-27 20:23:08 +01:00
|
|
|
$(eval $(waf-package))
|