Merge pull request #4853 from StevenHessing/noddos
[feed/packages.git] / net / redsocks / Makefile
1 #
2 # Copyright (C) 2014-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=redsocks
11 PKG_VERSION:=0.4-20150907
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15 PKG_MIRROR_HASH:=30ced050c58cbdd39732921a794b053127e9c45ebdcdd4a6023bdc5e434607da
16 PKG_SOURCE_PROTO:=git
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_URL:=https://github.com/darkk/redsocks.git
19 PKG_SOURCE_VERSION:=2118c616b4970a0436eceaa57a6e3451ec98ad2b
20
21 PKG_MAINTAINER:=Johannes Morgenroth <jm@m-network.de>
22 PKG_LICENSE:=Apache-2.0
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/redsocks
27 SECTION:=net
28 CATEGORY:=Network
29 DEPENDS:=+libevent2
30 TITLE:=Redirect any TCP connection to a SOCKS or HTTPS proxy server
31 endef
32
33 define Package/redsocks/conffiles
34 /etc/redsocks.conf
35 endef
36
37 define Package/redsocks/description
38 Redsocks is a daemon running on the local system, that will transparently
39 tunnel any TCP connection via a remote SOCKS4, SOCKS5 or HTTP proxy server. It
40 uses the system firewall's redirection facility to intercept TCP connections,
41 thus the redirection is system-wide, with fine-grained control, and does
42 not depend on LD_PRELOAD libraries.
43
44 Redsocks supports tunneling TCP connections and UDP packets. It has
45 authentication support for both, SOCKS and HTTP proxies.
46
47 Also included is a small DNS server returning answers with the "truncated" flag
48 set for any UDP query, forcing the resolver to use TCP.
49 endef
50
51 define Package/redsocks/install
52 $(INSTALL_DIR) $(1)/usr/sbin/
53 $(INSTALL_BIN) $(PKG_BUILD_DIR)/redsocks $(1)/usr/sbin/
54 $(INSTALL_DIR) $(1)/etc/init.d/
55 $(INSTALL_BIN) files/redsocks.init $(1)/etc/init.d/redsocks
56 $(INSTALL_CONF) files/redsocks.conf $(1)/etc/
57 endef
58
59 $(eval $(call BuildPackage,redsocks))