* Rename the AMCC target to PPC44x
[openwrt/svn-archive/archive.git] / package / bridge-utils / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=bridge-utils
13 PKG_VERSION:=1.0.6
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=@SF/bridge
18 PKG_MD5SUM:=9b7dc52656f5cbec846a7ba3299f73bd
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/bridge
23 SECTION:=net
24 CATEGORY:=Base system
25 TITLE:=Ethernet bridging configuration utility
26 URL:=http://bridge.sourceforge.net/
27 endef
28
29 define Package/bridge/description
30 Manage ethernet bridging: a way to connect networks together to
31 form a larger network.
32 endef
33
34 CONFIGURE_ARGS += \
35 --with-linux-headers="$(LINUX_DIR)" \
36
37 define Package/bridge/install
38 $(INSTALL_DIR) $(1)/usr/sbin
39 $(INSTALL_BIN) $(PKG_BUILD_DIR)/brctl/brctl $(1)/usr/sbin/
40 endef
41
42 $(eval $(call BuildPackage,bridge))