mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
77f19a70c2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28633 3c298f89-4303-0410-b956-a3cf2f4a3e73
63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ubus
|
|
PKG_VERSION:=2011-10-27
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=git://nbd.name/luci2/ubus.git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=8e5a6af1db52a908b53e3e8fd44a6a0af496d257
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_MIRROR_MD5SUM:=da8990faa56a634518c51b37c73c68e5
|
|
CMAKE_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/ubus
|
|
SECTION:=luci2
|
|
CATEGORY:=LuCI2
|
|
SUBMENU:=System
|
|
DEPENDS:=+libubus +libblobmsg-json +ubusd
|
|
TITLE:=OpenWrt RPC client utility
|
|
endef
|
|
|
|
define Package/ubusd
|
|
SECTION:=luci2
|
|
CATEGORY:=LuCI2
|
|
SUBMENU:=System
|
|
TITLE:=OpenWrt RPC daemon
|
|
endef
|
|
|
|
define Package/libubus
|
|
SECTION:=luci2
|
|
CATEGORY:=LuCI2
|
|
SUBMENU:=Libraries
|
|
DEPENDS:=+libubox
|
|
TITLE:=OpenWrt RPC client library
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
|
|
define Package/ubus/install
|
|
$(INSTALL_DIR) $(1)/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ubus $(1)/bin/
|
|
endef
|
|
|
|
define Package/ubusd/install
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/ubus.init $(1)/etc/init.d/ubus
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/ubusd $(1)/sbin/
|
|
endef
|
|
|
|
define Package/libubus/install
|
|
$(INSTALL_DIR) $(1)/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ubus))
|
|
$(eval $(call BuildPackage,ubusd))
|
|
$(eval $(call BuildPackage,libubus))
|
|
|