mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 19:27:31 +02:00
e240cc0ea6
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3843 3c298f89-4303-0410-b956-a3cf2f4a3e73
31 lines
624 B
Makefile
31 lines
624 B
Makefile
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=robocfg
|
|
PKG_VERSION:=0.01
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/robocfg
|
|
|
|
include $(TOPDIR)/package/rules.mk
|
|
|
|
define Package/robocfg
|
|
SECTION:=base
|
|
TITLE:=BCM5325E/536x switch configuration utility
|
|
DESCRIPTION:=Broadcom BCM5325E/536x switch configuration utility
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/robocfg robocfg.c
|
|
endef
|
|
|
|
define Package/robocfg/install
|
|
install -d -m0755 $(1)/sbin
|
|
install -m0755 $(PKG_BUILD_DIR)/robocfg $(1)/sbin/
|
|
$(RSTRIP) $(1)
|
|
$(IPKG_BUILD) $(1) $(PACKAGE_DIR)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,robocfg))
|