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.

51 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2006-2011 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. PKG_NAME:=igmpproxy
  9. PKG_VERSION:=0.3
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://github.com/pali/igmpproxy/releases/download/${PKG_VERSION}/
  13. PKG_HASH:=d1fc244cb2fbbf99f720bda3e841fe59ece9b6919073790b4b892739b1b844eb
  14. PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
  15. include $(INCLUDE_DIR)/package.mk
  16. PKG_FIXUP:=autoreconf
  17. PKG_LICENSE:=GPL-2.0+
  18. define Package/igmpproxy
  19. SECTION:=net
  20. CATEGORY:=Network
  21. SUBMENU:=Routing and Redirection
  22. DEPENDS:=+USE_GLIBC:librt
  23. TITLE:=Multicast Routing Daemon
  24. URL:=http://sourceforge.net/projects/igmpproxy
  25. endef
  26. define Package/igmpproxy/description
  27. IGMPproxy is a simple dynamic Multicast Routing Daemon using
  28. only IGMP signalling (Internet Group Management Protocol).
  29. endef
  30. define Package/igmpproxy/conffiles
  31. /etc/config/igmpproxy
  32. endef
  33. define Package/igmpproxy/install
  34. $(INSTALL_DIR) $(1)/etc/config
  35. $(INSTALL_CONF) ./files/igmpproxy.config $(1)/etc/config/igmpproxy
  36. $(INSTALL_DIR) $(1)/etc/init.d
  37. $(INSTALL_BIN) ./files/igmpproxy.init $(1)/etc/init.d/igmpproxy
  38. $(INSTALL_DIR) $(1)/usr/sbin
  39. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/igmpproxy $(1)/usr/sbin/
  40. endef
  41. $(eval $(call BuildPackage,igmpproxy))