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.

41 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=httptunnel
  3. PKG_VERSION:=3.3
  4. PKG_RELEASE:=$(AUTORELEASE)
  5. PKG_SOURCE_PROTO:=git
  6. PKG_SOURCE_URL:=https://github.com/larsbrinkhoff/httptunnel.git
  7. PKG_SOURCE_VERSION:=f213e0549a9ee79488a9be260495c2bae34918fb
  8. PKG_MIRROR_HASH:=bd2168ff97db19ef03b13882d51fa61bc942f5a4ad946bb79d45b7747ea0783d
  9. PKG_MAINTAINER:=Toni Uhlig <matzeton@googlemail.com>
  10. PKG_LICENSE:=GPL-2.0-only
  11. PKG_LICENSE_FILES:=COPYING
  12. PKG_BUILD_PARALLEL:=1
  13. PKG_FIXUP:=autoreconf
  14. PKG_REMOVE_FILES:=autogen.sh
  15. PKG_INSTALL:=1
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/httptunnel
  18. TITLE:=Bidirectional data stream tunnelled in HTTP requests.
  19. SECTION:=net
  20. CATEGORY:=Network
  21. URL:=http://github.com/larsbrinkhoff/httptunnel.git
  22. endef
  23. define Package/httptunnel/description
  24. httptunnel creates a bidirectional virtual data path tunnelled in HTTP
  25. requests. The requests can be sent via an HTTP proxy if so desired.
  26. endef
  27. define Package/httptunnel/install
  28. $(INSTALL_DIR) $(1)/usr/bin
  29. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/hts $(1)/usr/bin/hts
  30. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/htc $(1)/usr/bin/htc
  31. endef
  32. $(eval $(call BuildPackage,httptunnel))