update libubox and ubus to the latest version
[openwrt/openwrt.git] / package / ubus / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=ubus
4 PKG_VERSION:=2011-09-14
5 PKG_RELEASE=$(PKG_SOURCE_VERSION)
6
7 PKG_SOURCE_PROTO:=git
8 PKG_SOURCE_URL:=git://nbd.name/luci2/ubus.git
9 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
10 PKG_SOURCE_VERSION:=f86ec180c049f3344d18a2675ce95cdf7a7e62b7
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
12 PKG_MIRROR_MD5SUM:=365bbaa3e6e72c7d417ee6b095cd8461
13 CMAKE_INSTALL:=1
14
15 include $(INCLUDE_DIR)/package.mk
16 include $(INCLUDE_DIR)/cmake.mk
17
18 define Package/ubus
19 SECTION:=luci2
20 CATEGORY:=LuCI2
21 SUBMENU:=System
22 DEPENDS:=+libubus +libblobmsg-json +ubusd
23 TITLE:=OpenWrt RPC client utility
24 endef
25
26 define Package/ubusd
27 SECTION:=luci2
28 CATEGORY:=LuCI2
29 SUBMENU:=System
30 TITLE:=OpenWrt RPC daemon
31 endef
32
33 define Package/libubus
34 SECTION:=luci2
35 CATEGORY:=LuCI2
36 SUBMENU:=Libraries
37 DEPENDS:=+libubox
38 TITLE:=OpenWrt RPC client library
39 endef
40
41 TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
42
43 define Package/ubus/install
44 $(INSTALL_DIR) $(1)/bin
45 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ubus $(1)/bin/
46 endef
47
48 define Package/ubusd/install
49 $(INSTALL_DIR) $(1)/sbin
50 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ubusd $(1)/sbin/
51 endef
52
53 define Package/libubus/install
54 $(INSTALL_DIR) $(1)/lib
55 $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/lib/
56 endef
57
58 $(eval $(call BuildPackage,ubus))
59 $(eval $(call BuildPackage,ubusd))
60 $(eval $(call BuildPackage,libubus))
61