| 1 | include $(TOPDIR)/rules.mk |
| 2 | |
| 3 | PKG_NAME:=ubus |
| 4 | PKG_VERSION:=2011-10-28 |
| 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:=3706552c1c42182a8b656f95affc7e787a5b71dd |
| 11 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz |
| 12 | PKG_MIRROR_MD5SUM:=ec8a83b0678d3d9d2575bb975569576c |
| 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 $(1)/etc/init.d |
| 50 | $(INSTALL_BIN) ./files/ubus.init $(1)/etc/init.d/ubus |
| 51 | $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ubusd $(1)/sbin/ |
| 52 | endef |
| 53 | |
| 54 | define Package/libubus/install |
| 55 | $(INSTALL_DIR) $(1)/lib |
| 56 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/lib/ |
| 57 | endef |
| 58 | |
| 59 | $(eval $(call BuildPackage,ubus)) |
| 60 | $(eval $(call BuildPackage,ubusd)) |
| 61 | $(eval $(call BuildPackage,libubus)) |
| 62 | |
| 63 | |