aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tinyproxy.rb
diff options
context:
space:
mode:
authordx72014-09-17 00:10:11 -0300
committerMike McQuaid2014-09-18 11:58:11 +0100
commitca9bd5c7f374f154194a5eee8c853257e9dfdcf7 (patch)
treec4012713243cd539efb4d4f846257d3eaee80725 /Library/Formula/tinyproxy.rb
parent7d7666d0d8fc6d794c1222a1aaa8bddc48b08b74 (diff)
downloadhomebrew-ca9bd5c7f374f154194a5eee8c853257e9dfdcf7.tar.bz2
tinyproxy: optional transparent proxying.
Diffstat (limited to 'Library/Formula/tinyproxy.rb')
-rw-r--r--Library/Formula/tinyproxy.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/tinyproxy.rb b/Library/Formula/tinyproxy.rb
index 05ae8ca7c..01d2d5670 100644
--- a/Library/Formula/tinyproxy.rb
+++ b/Library/Formula/tinyproxy.rb
@@ -6,6 +6,7 @@ class Tinyproxy < Formula
sha1 "2538fbd190d3dc357a2e7c2a07ea0fbefb768a13"
option "reverse", "Enable reverse proxying"
+ option "with-transparent", "Enable transparent proxying"
depends_on "asciidoc" => :build
@@ -24,6 +25,7 @@ class Tinyproxy < Formula
]
args << "--enable-reverse" if build.include? "reverse"
+ args << "--enable-transparent" if build.with? "transparent"
system "./configure", *args