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.
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# connectproxy
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
CONNECTPROXY_VERSION = 1.104
|
|
|
|
CONNECTPROXY_SOURCE = $(CONNECTPROXY_VERSION).tar.gz
|
|
|
|
CONNECTPROXY_SITE = https://bitbucket.org/gotoh/connect/get/
|
|
|
|
CONNECTPROXY_LICENSE = GPLv2
|
|
|
|
|
|
|
|
define CONNECTPROXY_BUILD_CMDS
|
|
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define CONNECTPROXY_INSTALL_TARGET_CMDS
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/connect $(TARGET_DIR)/usr/bin/connect
|
|
|
|
ln -s /usr/bin/connect $(TARGET_DIR)/usr/bin/connect-proxy
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|
|
|
|
|