82ff8d75fc
Signed-off-by: Stephen Walker <stephendwalker+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40656 3c298f89-4303-0410-b956-a3cf2f4a3e73
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2010-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=vblade
|
|
PKG_VERSION:=21
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=@SF/aoetools/vblade
|
|
PKG_MD5SUM:=0a2a257737a808d8f2fbfa5de3172337
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/vblade
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Vblade AoE Target
|
|
URL:=http://aoetools.sourceforge.net/
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/vblade
|
|
endef
|
|
|
|
define Package/vblade/description
|
|
The vblade is the virtual EtherDrive (R) blade, a program that makes a
|
|
seekable file available over an ethernet local area network (LAN) via
|
|
the ATA over Ethernet (AoE) protocol.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += NPERSHELF=16
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/vblade $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/vbladed $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
$(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|