mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
https://gitlab.com/drobilla/sord/-/blob/v0.16.22/NEWS Added dependency to zix due to upstream commit:ec186c111badded in version 0.16.16. Updated license hash due to upstream commits53f071a5715edcf18adffb728f8a6fPackage switched from pcre to pcre2 in version 0.16.16:67bcd63bdaSigned-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
22 lines
540 B
Makefile
22 lines
540 B
Makefile
################################################################################
|
|
#
|
|
# sord
|
|
#
|
|
################################################################################
|
|
|
|
SORD_VERSION = 0.16.22
|
|
SORD_SITE = https://download.drobilla.net
|
|
SORD_SOURCE = sord-$(SORD_VERSION).tar.xz
|
|
SORD_LICENSE = ISC
|
|
SORD_LICENSE_FILES = COPYING
|
|
SORD_DEPENDENCIES = host-pkgconf serd zix
|
|
SORD_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE2),y)
|
|
SORD_DEPENDENCIES += pcre2
|
|
endif
|
|
|
|
SORD_CONF_OPTS += -Ddocs=disabled -Dtests=disabled
|
|
|
|
$(eval $(meson-package))
|