mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
As we're about to remove libgtk2, let's drop the optional dependency of lv2 on libgtk2. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
32 lines
663 B
Makefile
32 lines
663 B
Makefile
################################################################################
|
|
#
|
|
# lv2
|
|
#
|
|
################################################################################
|
|
|
|
LV2_VERSION = 1.18.10
|
|
LV2_SITE = https://lv2plug.in/spec
|
|
LV2_SOURCE = lv2-$(LV2_VERSION).tar.xz
|
|
LV2_LICENSE = ISC
|
|
LV2_LICENSE_FILES = COPYING
|
|
LV2_DEPENDENCIES = host-pkgconf
|
|
LV2_INSTALL_STAGING = YES
|
|
|
|
LV2_CONF_OPTS += \
|
|
-Ddocs=disabled \
|
|
-Dtests=disabled
|
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO),y)
|
|
LV2_DEPENDENCIES += cairo
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
LV2_DEPENDENCIES += libsndfile
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LV2_CONF_OPTS += -Dplugins=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|