buildroot/package/libqrtr-glib/libqrtr-glib.mk
Petr Vorel b50bb98220 package/libqrtr-glib: bump version to 1.2.2
Project switched to meson.
Use gitlab.freedesktop.org for download (previous URL did not work for
meson), thus moving to tar.gz archive.

Disable gtkdocize (not only to follow Buildroot approach, but also to avoid
build failure: ERROR: Program 'gtkdoc-scan' not found or not executable).

License file got renamed:
974e4231ea

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-02-05 16:36:54 +01:00

25 lines
784 B
Makefile

################################################################################
#
# libqrtr-glib
#
################################################################################
LIBQRTR_GLIB_VERSION = 1.2.2
LIBQRTR_GLIB_SITE = https://gitlab.freedesktop.org/mobile-broadband/libqrtr-glib/-/archive/$(LIBQRTR_GLIB_VERSION)
LIBQRTR_GLIB_LICENSE = LGPL-2.1+
LIBQRTR_GLIB_LICENSE_FILES = LICENSES/LGPL-2.1-or-later.txt
LIBQRTR_GLIB_INSTALL_STAGING = YES
LIBQRTR_GLIB_DEPENDENCIES = libglib2
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
LIBQRTR_GLIB_CONF_OPTS += -Dintrospection=true
LIBQRTR_GLIB_DEPENDENCIES += gobject-introspection
else
LIBQRTR_GLIB_CONF_OPTS += -Dintrospection=false
endif
# disable gtkdocize
LIBQRTR_GLIB_CONF_OPTS += -Dgtk_doc=false
$(eval $(meson-package))