1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-20 07:38:40 +02:00

Merge pull request #8099 from ja-pa/torsocks

torsocks: add new package
This commit is contained in:
Hannu Nyman 2019-03-17 09:20:55 +02:00 committed by GitHub
commit e078d096b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

62
net/torsocks/Makefile Normal file
View File

@ -0,0 +1,62 @@
#
# Copyright (C) 2017-2019 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=torsocks
PKG_VERSION:=2.3.0
PKG_RELEASE:=1
PKG_SOURCE_URL:=https://people.torproject.org/~dgoulet/torsocks/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_HASH:=b9f1b981d6b3fd4e1820de1eee325f8a7038c84765d5a6cd9af12571d5cc3622
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
PKG_LICENSE:=GPLv2
PKG_LICENSE_FILES:=LICENSE
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
PKG_FIXUP:=autoreconf
include $(INCLUDE_DIR)/package.mk
define Package/torsocks
SECTION:=net
CATEGORY:=Network
SUBMENU:=IP Addresses and Names
TITLE:=torsocks
URL:=https://trac.torproject.org/projects/tor/wiki/doc/torsocks
DEPENDS:=+tor
endef
define Package/torsocks/description
Torsocks allows you to use most applications in a safe way with Tor.
It ensures that DNS requests are handled safely and explicitly rejects any traffic other than TCP from the application you're using.
endef
define Build/Configure
$(call Build/Configure/Default)
ifeq ($(CONFIG_USE_UCLIBC),y)
find $(PKG_BUILD_DIR) -name 'Makefile' -exec sed -i 's|--param ssp-buffer-size=1 -fstack-protector-all||' \{\} \+
endif
endef
define Package/conffiles
/etc/tor/torsocks.conf
endef
define Package/torsocks/install
$(INSTALL_DIR) $(1)/etc/tor/
$(CP) $(PKG_INSTALL_DIR)/etc/tor/torsocks.conf $(1)/etc/tor/
$(INSTALL_DIR) $(1)/usr/lib/torsocks
$(CP) $(PKG_INSTALL_DIR)/usr/lib/torsocks/libtorsocks.so* $(1)/usr/lib/torsocks/
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/torsocks $(1)/usr/bin/
endef
$(eval $(call BuildPackage,torsocks))