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