Added connect-proxy package

pull/5/head
xSmurf 9 years ago
parent 8a579fbe0b
commit 9c57771a43

@ -1,5 +1,6 @@
menu "Networking applications"
source "$BR2_EXTERNAL/package/tlsdate/Config.in"
source "$BR2_EXTERNAL/package/connect-proxy/Config.in"
endmenu
menu "Coreboot"

@ -0,0 +1,10 @@
config BR2_PACKAGE_CONNECTPROXY
bool "connect-proxy"
help
connect-proxy: Establish TCP connection using SOCKS4/5 or HTTP tunnel
connect-proxy is a simple relaying command to make tunnel TCP connection
via SOCKS or HTTPS proxies.
It is mainly intended to be used as proxy command of OpenSSH.
https://bitbucket.org/gotoh/connect/

@ -0,0 +1,23 @@
################################################################################
#
# connect-proxy
#
################################################################################
CONNECTPROXY_VERSION = master
CONNECTPROXY_SITE = https://bitbucket.org/gotoh/connect
CONNECTPROXY_SITE_METHOD = git
CONNECTPROXY_LICENSE = GPLv2
CONNECTPROXY_CFLAGS = $(TARGET_CFLAGS) -I$(@D)
CONNECTPROXY_CXXFLAGS = $(TARGET_CXXFLAGS) -I$(@D)
define CONNECTPROXY_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) HOSTCC="$(TARGET_CC)" CXXFLAGS="$(CONNECTPROXY_CXXFLAGS)" CFLAGS="$(CONNECTPROXY_CFLAGS)" -C $(@D)
endef
define CONNECTPROXY_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/connect $(TARGET_DIR)/usr/bin/connect
endef
$(eval $(generic-package))
Loading…
Cancel
Save