Add usb-keyspan modules (#2229)
[openwrt/svn-archive/archive.git] / package / robocfg / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=robocfg
12 PKG_VERSION:=0.01
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/robocfg
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/robocfg
20 SECTION:=utils
21 CATEGORY:=Utilities
22 TITLE:=BCM5325E/536x switch configuration utility
23 DESCRIPTION:=\
24 This package contains an utility for configuring the Broadcom BCM5325E/536x \\\
25 based switches.
26 endef
27
28 define Build/Prepare
29 mkdir -p $(PKG_BUILD_DIR)
30 $(CP) ./src/* $(PKG_BUILD_DIR)/
31 endef
32
33 define Package/robocfg/install
34 $(INSTALL_DIR) $(1)/sbin
35 $(INSTALL_BIN) $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
36 endef
37
38 $(eval $(call BuildPackage,robocfg))