You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
804 B
40 lines
804 B
19 years ago
|
#
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
20 years ago
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=robocfg
|
||
|
PKG_VERSION:=0.01
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/robocfg
|
||
|
|
||
19 years ago
|
include $(INCLUDE_DIR)/package.mk
|
||
20 years ago
|
|
||
19 years ago
|
define Package/robocfg
|
||
18 years ago
|
SECTION:=utils
|
||
|
CATEGORY:=Utilities
|
||
|
TITLE:=BCM5325E/536x switch configuration utility
|
||
17 years ago
|
endef
|
||
|
|
||
|
define Package/robocfg/description
|
||
|
This package contains an utility for configuring the Broadcom BCM5325E/536x
|
||
|
based switches.
|
||
19 years ago
|
endef
|
||
|
|
||
19 years ago
|
define Build/Prepare
|
||
|
mkdir -p $(PKG_BUILD_DIR)
|
||
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
||
|
endef
|
||
|
|
||
19 years ago
|
define Package/robocfg/install
|
||
18 years ago
|
$(INSTALL_DIR) $(1)/sbin
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
||
19 years ago
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,robocfg))
|