summaryrefslogtreecommitdiff
path: root/package/libubox
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-10-08 11:24:12 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-10-08 11:24:12 +0000
commit48db59fab785ce881e154d83115de86d284fce5d (patch)
tree8741bab5dbcca43c884cdf0788b6c0049e0c25d1 /package/libubox
parent997ace7e5e78d580d802f3f30ddc00f9b30e0bcc (diff)
downloadmtk-20170518-48db59fab785ce881e154d83115de86d284fce5d.zip
mtk-20170518-48db59fab785ce881e154d83115de86d284fce5d.tar.gz
mtk-20170518-48db59fab785ce881e154d83115de86d284fce5d.tar.bz2
move library packages to package/libs/
SVN-Revision: 33657
Diffstat (limited to 'package/libubox')
-rw-r--r--package/libubox/Makefile64
1 files changed, 0 insertions, 64 deletions
diff --git a/package/libubox/Makefile b/package/libubox/Makefile
deleted file mode 100644
index 845f380..0000000
--- a/package/libubox/Makefile
+++ /dev/null
@@ -1,64 +0,0 @@
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=libubox
-PKG_VERSION:=2012-07-08
-PKG_RELEASE=$(PKG_SOURCE_VERSION)
-
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=git://nbd.name/luci2/libubox.git
-PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_VERSION:=cca2ed6c8cdb3555fea43ff63ba1c9905dd7a164
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
-PKG_MIRROR_MD5SUM:=dfd44c10b4aeccbdab9ae22774fb02e3
-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:=
-endef
-
-define Package/libblobmsg-json
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE:=blobmsg <-> json conversion library
- DEPENDS:=+libjson +libubox
-endef
-
-define Package/jshn
- SECTION:=utils
- CATEGORY:=Utilities
- DEPENDS:=+libjson
- TITLE:=JSON SHell Notation
-endef
-
-define Package/jshn/description
- Library for parsing and generating JSON from shell scripts
-endef
-
-TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
-
-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
-
-$(eval $(call BuildPackage,libubox))
-$(eval $(call BuildPackage,libblobmsg-json))
-$(eval $(call BuildPackage,jshn))
-