9de3b9c094
Currently, vapi support does not work with meson due to meson calling vapigen directly instead of the vala wrapper. As such, when building typelib files for gobject-introspection, vapigen fails to find the proper .gir files and fails to build. Explicitly disable vapi until a fix for vapi is made. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
28 lines
751 B
Makefile
28 lines
751 B
Makefile
################################################################################
|
|
#
|
|
# gssdp
|
|
#
|
|
################################################################################
|
|
|
|
GSSDP_VERSION_MAJOR = 1.0
|
|
GSSDP_VERSION = $(GSSDP_VERSION_MAJOR).3
|
|
GSSDP_SOURCE = gssdp-$(GSSDP_VERSION).tar.xz
|
|
GSSDP_SITE = http://ftp.gnome.org/pub/gnome/sources/gssdp/$(GSSDP_VERSION_MAJOR)
|
|
GSSDP_LICENSE = LGPL-2.0+
|
|
GSSDP_LICENSE_FILES = COPYING
|
|
GSSDP_INSTALL_STAGING = YES
|
|
GSSDP_DEPENDENCIES = host-pkgconf libglib2 libsoup
|
|
GSSDP_CONF_OPTS = \
|
|
-Dexamples=false \
|
|
-Dintrospection=false \
|
|
-Dvapi=false
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK3),y)
|
|
GSSDP_DEPENDENCIES += libgtk3
|
|
GSSDP_CONF_OPTS += -Dsniffer=true
|
|
else
|
|
GSSDP_CONF_OPTS += -Dsniffer=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|