2006-06-27 03:35:46 +03: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-20 00:22:09 +03:00
|
|
|
# $Id$
|
2005-05-14 16:15:46 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=robocfg
|
|
|
|
PKG_VERSION:=0.01
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/robocfg
|
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-05-14 16:15:46 +03:00
|
|
|
|
2006-05-10 22:06:22 +03:00
|
|
|
define Package/robocfg
|
2006-09-23 22:24:44 +03:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=BCM5325E/536x switch configuration utility
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/robocfg/description
|
|
|
|
This package contains an utility for configuring the Broadcom BCM5325E/536x
|
|
|
|
based switches.
|
2006-05-10 22:06:22 +03:00
|
|
|
endef
|
|
|
|
|
2006-06-18 21:05:20 +03:00
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
2006-05-10 22:06:22 +03:00
|
|
|
define Package/robocfg/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
2006-05-10 22:06:22 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,robocfg))
|