Commit 2f2becd5 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files

libubox: new package



[Peter: needs !static, use += for _DEPENDENCIES/_CONF_OPT]
Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 74af345c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -791,6 +791,7 @@ source "package/libsigc/Config.in"
source "package/libsigsegv/Config.in"
source "package/libtasn1/Config.in"
source "package/libtpl/Config.in"
source "package/libubox/Config.in"
source "package/libunwind/Config.in"
source "package/liburcu/Config.in"
source "package/linux-pam/Config.in"
+13 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBUBOX
	bool "libubox"
	depends on !BR2_PREFER_STATIC_LIB
	help
	  This library originates from the OpenWrt project to
	  handle the configuration file infrastructure, but can
	  also be used for the same purposes in projects other
	  than OpenWrt.

	  http://nbd.name/gitweb.cgi?p=luci2/libubox.git;a=summary

comment "libubox needs a toolchain w/ dynamic library"
	depends on BR2_PREFER_STATIC_LIB
+18 −0
Original line number Diff line number Diff line
################################################################################
#
# libubox
#
################################################################################

LIBUBOX_VERSION = bbd846ec2d72b2629758b69dc122ac0b0f2c3e4b
LIBUBOX_SITE = git://nbd.name/luci2/libubox.git
LIBUBOX_LICENSE = LGPLv2.1, GPLv2, BSD-3c, MIT
LIBUBOX_INSTALL_STAGING = YES

ifeq ($(BR2_PACKAGE_LUA),y)
	LIBUBOX_DEPENDENCIES += lua
else
	LIBUBOX_CONF_OPT += -DBUILD_LUA:BOOL=OFF
endif

$(eval $(cmake-package))