source "package/libtasn1/Config.in"
source "package/libtpl/Config.in"
source "package/libubox/Config.in"
+source "package/libuci/Config.in"
source "package/libunwind/Config.in"
source "package/liburcu/Config.in"
source "package/linux-pam/Config.in"
--- /dev/null
+config BR2_PACKAGE_LIBUCI
+ bool "libuci"
+ depends on !BR2_PREFER_STATIC_LIB
+ select BR2_PACKAGE_LIBUBOX
+ 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.
+
+ This package will also install CLI tool uci.
+
+ http://wiki.openwrt.org/doc/techref/uci
+
+comment "libuci needs a toolchain w/ dynamic library"
+ depends on BR2_PREFER_STATIC_LIB
--- /dev/null
+################################################################################
+#
+# libuci
+#
+################################################################################
+
+LIBUCI_VERSION = 262fede3e8c8c08c1eb0d1be9bf102232fb86cb9
+LIBUCI_SITE = git://nbd.name/uci.git
+LIBUCI_LICENSE = LGPLv2.1
+LIBUCI_INSTALL_STAGING = YES
+LIBUCI_DEPENDENCIES = libubox
+
+ifeq ($(BR2_PACKAGE_LUA),y)
+ LIBUCI_DEPENDENCIES += lua
+else
+ LIBUCI_CONF_OPT += -DBUILD_LUA:BOOL=OFF
+endif
+
+$(eval $(cmake-package))