1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 00:00:42 +03:00
openwrt-xburst/package/bridge/Makefile
nbd 3bc3fa0cc5 fix bridge build and description, add default configure command to rules.mk, use CONFIG_ as prefix for package selction variables
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3690 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-04-21 09:55:30 +00:00

44 lines
1022 B
Makefile

# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=bridge
PKG_VERSION:=1.0.6
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/bridge-utils-$(PKG_VERSION)
PKG_SOURCE:=bridge-utils-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/bridge
PKG_MD5SUM:=9b7dc52656f5cbec846a7ba3299f73bd
PKG_CAT:=zcat
include $(TOPDIR)/package/rules.mk
define Package/bridge
SECTION:=base
CATEGORY:=Network
DEFAULT:=y
TITLE:=Ethernet bridging configuration utility
DESCRIPTION:=Ethernet bridging configuration utility\\\
Manage ethernet bridging; a way to connect networks together to\\\
form a larger network.
URL:=http://bridge.sourceforge.net/
endef
define Build/Configure
$(call Build/Configure/Default,--with-linux-headers=$(LINUX_DIR))
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
endef
define Package/busybox/install
mkdir -p $(IDIR_BRIDGE)/usr/sbin
$(CP) $(PKG_BUILD_DIR)/brctl/brctl $(IDIR_BRIDGE)/usr/sbin/
$(STRIP) $(IDIR_BRIDGE)/usr/sbin/brctl
$(IPKG_BUILD) $(IDIR_BRIDGE) $(PACKAGE_DIR)
endef
$(eval $(call BuildPackage,bridge))