Bump uclient version 2016-12-09

This commit is contained in:
jbnadal
2017-03-20 18:30:48 +01:00
parent 5fc3e0c439
commit bd8184c724
13 changed files with 3061 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
config BR2_PACKAGE_LIBUBOX
bool "libubox"
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_JSON_C
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_STATIC_LIBS

View File

@@ -0,0 +1,24 @@
################################################################################
#
# LIB UBOX
#
################################################################################
UCLIENT_VERSION:= 2016-12-09
UCLIENT_SITE = $(TOPDIR)/../../src/3P/libubox
UCLIENT_SITE_METHOD = local
UCLIENT_LICENSE = LGPLv2.1, GPLv2, BSD-3c, MIT
UCLIENT_INSTALL_STAGING = YES
UCLIENT_DEPENDENCIES = json-c
UCLIENT_CONF = SRC_DIR=$(TOPDIR)/../..
UCLIENT_CONF_OPTS +=-DBUILD_LUA=OFF
UCLIENT_CONF_ENV = $(UCLIENT_CONF)
UCLIENT_MAKE_ENV = $(UCLIENT_CONF)
UCLIENT_CONF_OPTS += -DMODULE_PATH=$(TOPDIR)/../../bsp/cmake-modules -DCMAKE_BUILD_TYPE=$(BUILD_TYPE)
$(eval $(cmake-package))