summaryrefslogtreecommitdiff
path: root/package/libs
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-09-17 21:44:52 +0000
committerJohn Crispin <john@openwrt.org>2013-09-17 21:44:52 +0000
commit513d282d34beea11fed63800a8d5beebe69418ec (patch)
treeaddb59a8ea9ace08970414b740fe18733cdf6fc8 /package/libs
parentb3ceaf834d064058608ea480a942d532a1556fee (diff)
downloadmtk-20170518-513d282d34beea11fed63800a8d5beebe69418ec.zip
mtk-20170518-513d282d34beea11fed63800a8d5beebe69418ec.tar.gz
mtk-20170518-513d282d34beea11fed63800a8d5beebe69418ec.tar.bz2
libubox: add packaging info for uloop lua binding
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 38018
Diffstat (limited to 'package/libs')
-rw-r--r--package/libs/libubox/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/libs/libubox/Makefile b/package/libs/libubox/Makefile
index 2d6967b..f79a34f 100644
--- a/package/libs/libubox/Makefile
+++ b/package/libs/libubox/Makefile
@@ -54,6 +54,13 @@ define Package/libjson-script
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
@@ -79,7 +86,13 @@ define Package/libjson-script/install
$(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))