mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
https://gitlab.com/drobilla/zix/-/blob/v0.8.2/NEWS Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
565 B
Makefile
23 lines
565 B
Makefile
################################################################################
|
|
#
|
|
# zix
|
|
#
|
|
################################################################################
|
|
|
|
ZIX_VERSION = 0.8.2
|
|
ZIX_SITE = https://download.drobilla.net
|
|
ZIX_SOURCE = zix-$(ZIX_VERSION).tar.xz
|
|
ZIX_LICENSE = ISC
|
|
ZIX_LICENSE_FILES = COPYING
|
|
ZIX_INSTALL_STAGING = YES
|
|
|
|
ZIX_CONF_OPTS += -Dbenchmarks=disabled -Ddocs=disabled -Dtests=disabled
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
ZIX_CONF_OPTS += -Dthreads=enabled
|
|
else
|
|
ZIX_CONF_OPTS += -Dthreads=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|