Commit 1f614fc4 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files

libmbim: add new package



[Peter: fixup license info as pointed out by Thomas]
Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Acked-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 6bfc9788
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -542,6 +542,7 @@ source "package/libfreefare/Config.in"
source "package/libftdi/Config.in"
source "package/libhid/Config.in"
source "package/libiqrf/Config.in"
source "package/libmbim/Config.in"
source "package/libnfc/Config.in"
source "package/libnfc-llcp/Config.in"
source "package/libqmi/Config.in"
+17 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBMBIM
	bool "libmbim"
	depends on BR2_USE_WCHAR # libglib2
	depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
	depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
	select BR2_PACKAGE_LIBGLIB2
	select BR2_PACKAGE_UDEV_ALL_EXTRAS
	help
	  libmbim is a glib-based library for talking to WWAN modems and
	  devices which speak the Mobile Interface Broadband Model (MBIM)
	  protocol.

	  http://www.freedesktop.org/wiki/Software/libmbim/

comment "libmbim needs udev and a toolchain w/ wchar, threads"
	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
		!BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
+19 −0
Original line number Diff line number Diff line
################################################################################
#
# libmbim
#
################################################################################

LIBMBIM_VERSION = 1.4.0
LIBMBIM_SITE    = http://www.freedesktop.org/software/libmbim/
LIBMBIM_SOURCE  = libmbim-$(LIBMBIM_VERSION).tar.xz
LIBMBIM_LICENSE = LGPLv2+ (library), GPLv2+ (programs)
LIBMBIM_LICENSE_FILES = COPYING
LIBMBIM_INSTALL_STAGING = YES

LIBMBIM_DEPENDENCIES = libglib2 udev

# we don't want -Werror
LIBMBIM_CONF_OPT = --enable-more-warnings=no

$(eval $(autotools-package))