2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-05-14 21:15:46 +08:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=robocfg
|
|
|
|
PKG_VERSION:=0.01
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/robocfg
|
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-05-14 21:15:46 +08:00
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Package/robocfg
|
2006-09-24 03:24:44 +08:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=BCM5325E/536x switch configuration utility
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/robocfg/description
|
|
|
|
This package contains an utility for configuring the Broadcom BCM5325E/536x
|
|
|
|
based switches.
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
|
|
|
|
2006-06-19 02:05:20 +08:00
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Package/robocfg/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,robocfg))
|