0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-05 17:03:09 +00:00
Files
packages/net/udptunnel/Makefile
Daniel Cousens 8a6a3d6f5d treewide: use https for some PKG_SOURCE_URLs
This changes a number of PKG_SOURCE_URLs that were using the http protocol to use https if available.
HTTPS was verified as functioning for the updated hosts.

Signed-off-by: Daniel Cousens <github@dcousens.com>
2025-06-15 15:56:20 +02:00

40 lines
1.0 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=udptunnel
PKG_VERSION:=1.1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://www.cs.columbia.edu/~lennox/udptunnel
PKG_HASH:=45c0e12045735bc55734076ebbdc7622c746d1fe4e6f7267fa122e2421754670
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=COPYRIGHT
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/udptunnel
SECTION:=net
CATEGORY:=Network
TITLE:=Tunnel UDP packets over a TCP connection
URL:=http://www.cs.columbia.edu/~lennox/udptunnel/
endef
define Package/udptunnel/description
UDPTunnel is a small program which can tunnel UDP packets bi-directionally
over a TCP connection. Its primary purpose (and original motivation) is to
allow multi-media conferences to traverse a firewall which allows only outgoing
TCP connections.
endef
define Package/udptunnel/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udptunnel $(1)/usr/bin/
endef
$(eval $(call BuildPackage,udptunnel))