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.

68 lines
2.0 KiB

  1. #
  2. # Copyright (C) 2006-2014 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:=miniupnpd
  9. PKG_VERSION:=2.1.20180706
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_URL:=https://miniupnp.tuxfamily.org/files
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_HASH:=fc2d2fd044d8c3f8d02b63d70489bb35ece836a4fc1b6386865ac8fbe8d8b006
  14. PKG_LICENSE:=BSD-3-Clause
  15. include $(INCLUDE_DIR)/package.mk
  16. include $(INCLUDE_DIR)/version.mk
  17. define Package/miniupnpd
  18. SECTION:=net
  19. CATEGORY:=Network
  20. DEPENDS:=+iptables +libip4tc +IPV6:libip6tc +IPV6:ip6tables +libuuid
  21. TITLE:=Lightweight UPnP IGD, NAT-PMP & PCP daemon
  22. SUBMENU:=Firewall
  23. URL:=https://miniupnp.tuxfamily.org/
  24. endef
  25. define Package/miniupnpd/conffiles
  26. /etc/config/upnpd
  27. endef
  28. define Build/Prepare
  29. $(call Build/Prepare/Default)
  30. echo "$(VERSION_NUMBER)" | tr '() ' '_' >$(PKG_BUILD_DIR)/os.openwrt
  31. endef
  32. TARGET_CFLAGS := $(filter-out -O%,$(TARGET_CFLAGS))
  33. TARGET_CFLAGS += -flto -ffunction-sections -fdata-sections -O2
  34. TARGET_LDFLAGS += $(FPIC) -flto -Wl,--gc-sections
  35. MAKE_FLAGS += \
  36. TARGET_OPENWRT=1 TEST=0 LIBS="" \
  37. CC="$(TARGET_CC) -DIPTABLES_143 -lip4tc -luuid \
  38. $(if $(CONFIG_IPV6),-lip6tc)" \
  39. CONFIG_OPTIONS="--portinuse --leasefile --igd2 \
  40. $(if $(CONFIG_IPV6),--ipv6)" \
  41. -f Makefile.linux miniupnpd
  42. define Package/miniupnpd/install
  43. $(INSTALL_DIR) $(1)/usr/sbin
  44. $(INSTALL_DIR) $(1)/etc/init.d
  45. $(INSTALL_DIR) $(1)/etc/config
  46. $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
  47. $(INSTALL_DIR) $(1)/etc/uci-defaults
  48. $(INSTALL_DIR) $(1)/usr/share/miniupnpd
  49. $(INSTALL_BIN) $(PKG_BUILD_DIR)/miniupnpd $(1)/usr/sbin/miniupnpd
  50. $(INSTALL_BIN) ./files/miniupnpd.init $(1)/etc/init.d/miniupnpd
  51. $(INSTALL_CONF) ./files/upnpd.config $(1)/etc/config/upnpd
  52. $(INSTALL_DATA) ./files/miniupnpd.hotplug $(1)/etc/hotplug.d/iface/50-miniupnpd
  53. $(INSTALL_BIN) ./files/miniupnpd.defaults $(1)/etc/uci-defaults/99-miniupnpd
  54. $(INSTALL_DATA) ./files/firewall.include $(1)/usr/share/miniupnpd/firewall.include
  55. endef
  56. $(eval $(call BuildPackage,miniupnpd))