summaryrefslogtreecommitdiffstats
path: root/package/libubox
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-02-07 18:17:12 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-02-07 18:17:12 +0000
commit1471a12676da0bf056a8563af29d144c2f4ba990 (patch)
tree0398f3e65ed9f503fe9b918801cb67f49cb60b1d /package/libubox
parent9326fed13b22c76926fa6b4df82d64a6df69e4f3 (diff)
add libubox, a small utility library containing blob/blobmsg (structured message format libraries), uloop, usock, list.h and the olsr avl tree implementation
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25406 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libubox')
-rw-r--r--package/libubox/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/package/libubox/Makefile b/package/libubox/Makefile
new file mode 100644
index 000000000..a2b3a9c51
--- /dev/null
+++ b/package/libubox/Makefile
@@ -0,0 +1,41 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=libubox
+PKG_VERSION:=2010-02-07
+PKG_RELEASE:=1
+
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_URL:=git://nbd.name/luci2/libubox.git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE_VERSION:=e44dbfb1029829dbd6c5e1ca11e461d9a89027b9
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
+CMAKE_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/cmake.mk
+
+define Package/libubox
+ SECTION:=libs
+ CATEGORY:=Libraries
+ TITLE:=Basic utility library
+ DEPENDS:=+libjson
+endef
+
+
+define Package/libblobmsg-json
+ SECTION:=libs
+ CATEGORY:=Libraries
+ TITLE:=blobmsg <-> json conversion library
+ DEPENDS:=+libjson
+endef
+
+
+TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
+
+define Package/libubox/install
+ $(INSTALL_DIR) $(1)/lib/
+ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/*.so $(1)/lib/
+endef
+
+$(eval $(call BuildPackage,libubox))
+