mirror of https://github.com/hak5/openwrt.git
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=ubox
|
||
|
PKG_VERSION:=2013-04-24
|
||
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
||
|
|
||
|
PKG_SOURCE_PROTO:=git
|
||
|
PKG_SOURCE_URL:=git://nbd.name/luci2/ubox.git
|
||
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||
|
PKG_SOURCE_VERSION:=fa4c1e81dae3ffb7711be38c64eacf8ac3856e42
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
||
|
CMAKE_INSTALL:=1
|
||
|
|
||
|
PKG_LICENSE:=GPLv2
|
||
|
PKG_LICENSE_FILES:=
|
||
|
|
||
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
include $(INCLUDE_DIR)/cmake.mk
|
||
|
|
||
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
|
||
|
|
||
|
define Package/ubox
|
||
|
SECTION:=base
|
||
|
CATEGORY:=Base system
|
||
|
DEPENDS:=+ubusd +ubus +USE_EGLIBC:librt
|
||
|
TITLE:=OpenWrt system helper toolbox
|
||
|
endef
|
||
|
|
||
|
define Package/ubox/install
|
||
|
$(INSTALL_DIR) $(1)/sbin
|
||
|
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/{mount_root,kmodloader,lsbloader,board} $(1)/sbin/
|
||
|
ln -s /sbin/mount_root $(1)/sbin/switch2jffs
|
||
|
ln -s /sbin/mount_root $(1)/sbin/jffs2reset
|
||
|
ln -s /sbin/mount_root $(1)/sbin/jffs2mark
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,ubox))
|