proxychains-ng: new package

Compile tested: R7800 (arm_cortex-a15_neon-vfpv4), OpenWrt git master
Run tested: R7800 (arm_cortex-a15_neon-vfpv4), OpenWrt git master

Signed-off-by: Daniel Bermond <danielbermond@gmail.com>
This commit is contained in:
Daniel Bermond 2019-09-23 17:59:04 +00:00
parent a2bbedb880
commit 63379c3d35
No known key found for this signature in database
GPG Key ID: 019A7474297D8577
1 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,67 @@
#
# Copyright (C) 2019 Daniel Bermond
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=proxychains-ng
PKG_VERSION:=4.14
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/rofl0r/proxychains-ng/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=ab31626af7177cc2669433bb244b99a8f98c08031498233bb3df3bcc9711a9cc
PKG_MAINTAINER:=Daniel Bermond <dbermond@archlinux.org>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/proxychains-ng
SECTION:=net
CATEGORY:=Network
TITLE:=Redirect TCP traffic to a HTTP or SOCKS proxy
URL:=https://github.com/rofl0r/proxychains/
endef
define Package/proxychains-ng/description
A hook preloader that allows to redirect TCP traffic of
existing dynamically linked programs through one or more
SOCKS or HTTP proxies.
endef
define Build/Compile
$(call Build/Compile/Default,all)
endef
define Build/Install
$(call Build/Install/Default,install install-config)
endef
define Package/proxychains-ng/conffiles
/etc/proxychains.conf
endef
define Package/proxychains-ng/install
# binary executable
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/proxychains4 $(1)/usr/bin/
$(LN) proxychains4 $(1)/usr/bin/proxychains
# library
$(INSTALL_DIR) $(1)/usr/lib
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libproxychains4.so $(1)/usr/lib/
# config
$(INSTALL_DIR) $(1)/etc
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/proxychains.conf $(1)/etc/
endef
$(eval $(call BuildPackage,proxychains-ng))