Import buildroot 2016.02.01
This commit is contained in:
11
firmware/buildroot/package/proxychains-ng/Config.in
Normal file
11
firmware/buildroot/package/proxychains-ng/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_PROXYCHAINS_NG
|
||||
bool "proxychains-ng"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
Force any tcp connections to flow through a proxy (or proxy chain)
|
||||
|
||||
https://github.com/rofl0r/proxychains
|
||||
|
||||
comment "proxychains-ng needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 859a717e18ed88c9291078a6ed8748dfe95c61220993203890fef8a04d28dda5 proxychains-4.6.tar.bz2
|
||||
26
firmware/buildroot/package/proxychains-ng/proxychains-ng.mk
Normal file
26
firmware/buildroot/package/proxychains-ng/proxychains-ng.mk
Normal file
@@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
#
|
||||
# proxychains-ng
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PROXYCHAINS_NG_VERSION = 4.6
|
||||
PROXYCHAINS_NG_SOURCE = proxychains-$(PROXYCHAINS_NG_VERSION).tar.bz2
|
||||
PROXYCHAINS_NG_SITE = http://downloads.sourceforge.net/project/proxychains-ng
|
||||
PROXYCHAINS_NG_LICENSE = GPLv2+
|
||||
PROXYCHAINS_NG_LICENSE_FILES = COPYING
|
||||
|
||||
define PROXYCHAINS_NG_CONFIGURE_CMDS
|
||||
cd $(@D) && \
|
||||
$(TARGET_CONFIGURE_OPTS) ./configure --prefix=/usr --sysconfdir=/etc
|
||||
endef
|
||||
|
||||
define PROXYCHAINS_NG_BUILD_CMDS
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define PROXYCHAINS_NG_INSTALL_TARGET_CMDS
|
||||
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install install-config
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user