da93c15fd2
Adds the following changes:
de3f14b uloop: add uloop_cancelling function
3b6181b utils: fix build on Mac OS X 10.12
7f671b1
blobmsg: add support for double
0fe1374 utils: add helper functions useful for allocating a ring buffer
8fc1c30 libubox: replace strtok with _r version.
4a9f74f libubox: allow reading out the pid of uloop process in lua
372e1e6 uloop: remove useless epoll data assignment
f9db1cb libubox: allow reading out the remaining time of a uloop timer in Lua
Signed-off-by: Felix Fietkau <nbd@nbd.name>
97 lines
2.3 KiB
Makefile
97 lines
2.3 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libubox
|
|
PKG_RELEASE=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/libubox.git
|
|
PKG_SOURCE_DATE:=2017-02-03
|
|
PKG_SOURCE_VERSION:=de3f14b643f09c799845073eaf3577a334d0726d
|
|
PKG_MIRROR_HASH:=a797e1d329f544807caf2fdb8bb6706aaeae6a5c2eede921839f2659f774b3c7
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_LICENSE:=ISC
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
PKG_BUILD_DEPENDS:=lua
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libubox
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Basic utility library
|
|
ABI_VERSION:=$(PKG_VERSION)
|
|
DEPENDS:=
|
|
endef
|
|
|
|
define Package/libblobmsg-json
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=blobmsg <-> json conversion library
|
|
DEPENDS:=+libjson-c +libubox
|
|
endef
|
|
|
|
define Package/jshn
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libjson-c +libubox +libblobmsg-json
|
|
TITLE:=JSON SHell Notation
|
|
endef
|
|
|
|
define Package/jshn/description
|
|
Library for parsing and generating JSON from shell scripts
|
|
endef
|
|
|
|
define Package/libjson-script
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libubox
|
|
TITLE:=Minimalistic JSON based scripting engine
|
|
endef
|
|
|
|
define Package/libubox-lua
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libubox +liblua
|
|
TITLE:=Lua binding for the OpenWrt Basic utility library
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
CMAKE_OPTIONS = \
|
|
-DLUAPATH=/usr/lib/lua
|
|
|
|
define Package/libubox/install
|
|
$(INSTALL_DIR) $(1)/lib/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libubox.so $(1)/lib/
|
|
endef
|
|
|
|
define Package/libblobmsg-json/install
|
|
$(INSTALL_DIR) $(1)/lib/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libblobmsg_json.so $(1)/lib/
|
|
endef
|
|
|
|
define Package/jshn/install
|
|
$(INSTALL_DIR) $(1)/usr/bin $(1)/usr/share/libubox
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/jshn $(1)/usr/bin
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libubox/jshn.sh $(1)/usr/share/libubox
|
|
endef
|
|
|
|
define Package/libjson-script/install
|
|
$(INSTALL_DIR) $(1)/lib/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libjson_script.so $(1)/lib/
|
|
endef
|
|
|
|
define Package/libubox-lua/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
|
$(CP) $(PKG_BUILD_DIR)/lua/uloop.so $(1)/usr/lib/lua/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libubox))
|
|
$(eval $(call BuildPackage,libblobmsg-json))
|
|
$(eval $(call BuildPackage,jshn))
|
|
$(eval $(call BuildPackage,libjson-script))
|
|
$(eval $(call BuildPackage,libubox-lua))
|