be76508af2
This release introduces meson build system support that fixes gobject-intorspection issue with autotools. As meson files are only available in git, switch the location to https://gitlab.freedesktop.org. Since 1.26.0 libgudev is not required anymore so drop this dependency. Add support for bash-completion. Fixes: http://autobuild.buildroot.net/results/f8a81aad0e262a567a2b31712575472ae92e5518 Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Aleksander Morgado <aleksander@aleksander.es> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
31 lines
900 B
Makefile
31 lines
900 B
Makefile
################################################################################
|
|
#
|
|
# libmbim
|
|
#
|
|
################################################################################
|
|
|
|
LIBMBIM_VERSION = 1.26.0
|
|
LIBMBIM_SITE = https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/archive/$(LIBMBIM_VERSION)
|
|
LIBMBIM_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (programs)
|
|
LIBMBIM_LICENSE_FILES = COPYING COPYING.LIB
|
|
LIBMBIM_CPE_ID_VENDOR = freedesktop
|
|
LIBMBIM_INSTALL_STAGING = YES
|
|
|
|
LIBMBIM_DEPENDENCIES = libglib2
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
LIBMBIM_DEPENDENCIES += gobject-introspection
|
|
LIBMBIM_CONF_OPTS += -Dintrospection=true
|
|
else
|
|
LIBMBIM_CONF_OPTS += -Dintrospection=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
|
|
LIBMBIM_DEPENDENCIES += bash-completion
|
|
LIBMBIM_CONF_OPTS += -Dbash_completion=true
|
|
else
|
|
LIBMBIM_CONF_OPTS += -Dbash_completion=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|