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.

50 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. include $(INCLUDE_DIR)/kernel.mk
  9. PKG_NAME:=bridge-utils
  10. PKG_VERSION:=1.7
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  13. PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/shemminger/bridge-utils
  14. PKG_HASH:=939987e659b1a4c36ae46f44b6687f373bc5c916a9eab91f775630f5e38b997e
  15. PKG_MAINTAINER:=Nikolay Martynov <mar.kolya@gmail.com>
  16. PKG_LICENSE:=GPL-2.0-or-later
  17. PKG_LICENSE_FILES:=COPYING
  18. PKG_FIXUP:=autoreconf
  19. PKG_INSTALL:=1
  20. PKG_BUILD_PARALLEL:=1
  21. include $(INCLUDE_DIR)/package.mk
  22. define Package/bridge
  23. SECTION:=net
  24. CATEGORY:=Base system
  25. TITLE:=Ethernet bridging configuration utility
  26. URL:=http://www.linuxfromscratch.org/blfs/view/svn/basicnet/bridge-utils.html
  27. ALTERNATIVES:=300:/usr/sbin/brctl:/usr/libexec/bridge-utils-brctl
  28. endef
  29. define Package/bridge/description
  30. Manage ethernet bridging: a way to connect networks together to
  31. form a larger network.
  32. endef
  33. CONFIGURE_ARGS += \
  34. --with-linux-headers="$(LINUX_DIR)"
  35. define Package/bridge/install
  36. $(INSTALL_DIR) $(1)/usr/libexec
  37. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/brctl $(1)/usr/libexec/bridge-utils-brctl
  38. endef
  39. $(eval $(call BuildPackage,bridge))