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.
 
 
 
 
 
 

40 lines
971 B

include $(TOPDIR)/rules.mk
PKG_NAME:=ptunnel-ng
PKG_VERSION:=1.32
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/lnslbrty/ptunnel-ng/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=0e51f6fa2fb5b11e9cd5303e450a4e236e4688560ad2a14b0b6e01e9fc2970db
PKG_LICENSE:=BSD-3
PKG_LICENSE_FILES:=COPYING
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/ptunnel-ng
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpthread
TITLE:=PingTunnel [N]ew[G]eneration
MAINTAINER:=Toni Uhlig <matzeton@googlemail.com>
URL:=https://github.com/lnslbrty/ptunnel-ng
endef
define Package/ptunnel-ng/description
Tunnel TCP connections through ICMP.
endef
CONFIGURE_ARGS += \
--disable-pcap \
--disable-selinux
define Package/ptunnel-ng/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/sbin/$(PKG_NAME)
endef
$(eval $(call BuildPackage,ptunnel-ng))