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.

39 lines
1.0 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=udptunnel
  3. PKG_VERSION:=1.1
  4. PKG_RELEASE:=1
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  6. PKG_SOURCE_URL:=http://www.cs.columbia.edu/~lennox/udptunnel
  7. PKG_HASH:=45c0e12045735bc55734076ebbdc7622c746d1fe4e6f7267fa122e2421754670
  8. PKG_LICENSE:=BSD-3-Clause
  9. PKG_LICENSE_FILES:=COPYRIGHT
  10. PKG_BUILD_PARALLEL:=1
  11. PKG_INSTALL:=1
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/udptunnel
  14. SECTION:=net
  15. CATEGORY:=Network
  16. TITLE:=Tunnel UDP packets over a TCP connection
  17. URL:=http://www.cs.columbia.edu/~lennox/udptunnel/
  18. endef
  19. define Package/udptunnel/description
  20. UDPTunnel is a small program which can tunnel UDP packets bi-directionally
  21. over a TCP connection. Its primary purpose (and original motivation) is to
  22. allow multi-media conferences to traverse a firewall which allows only outgoing
  23. TCP connections.
  24. endef
  25. define Package/udptunnel/install
  26. $(INSTALL_DIR) $(1)/usr/bin
  27. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udptunnel $(1)/usr/bin/
  28. endef
  29. $(eval $(call BuildPackage,udptunnel))