cups: configure: disable acl
[packages.git] / net / obfsproxy / Makefile
1 #
2 # Copyright (C) 2012 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:=obfsproxy
11 PKG_VERSION:=0.1.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://www.torproject.org/dist/obfsproxy \
16         https://archive.torproject.org/tor-package-archive/obfsproxy
17 PKG_MD5SUM:=d3b898b1f5ea21c611bceaeb3c20e0d7
18
19 PKG_FIXUP:=autoreconf
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/obfsproxy
25   SECTION:=net
26   CATEGORY:=Network
27   SUBMENU:=Web Servers/Proxies
28   TITLE:=A pluggable transports proxy
29   URL:=https://www.torproject.org/projects/obfsproxy
30   DEPENDS:=+libevent2 +libopenssl
31 endef
32
33 define Package/obfsproxy/description
34   obfsproxy is a tool that attempts to circumvent censorship, by transforming
35   the Tor traffic between the client and the bridge. This way, censors, who
36   usually monitor traffic between the client and the bridge, will see
37   innocent-looking transformed traffic instead of the actual Tor traffic.
38 endef
39
40 define Package/obfsproxy/install
41         $(INSTALL_DIR) $(1)/usr/bin
42         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/obfsproxy $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,obfsproxy))