diff options
Diffstat (limited to 'Library/Formula/tinyproxy.rb')
| -rw-r--r-- | Library/Formula/tinyproxy.rb | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Library/Formula/tinyproxy.rb b/Library/Formula/tinyproxy.rb index 973ca6f09..f5fd49b3d 100644 --- a/Library/Formula/tinyproxy.rb +++ b/Library/Formula/tinyproxy.rb @@ -1,15 +1,13 @@ require 'formula' class Tinyproxy < Formula - homepage 'https://www.banu.com/tinyproxy/' - url 'https://www.banu.com/pub/tinyproxy/1.8/tinyproxy-1.8.3.tar.bz2' - sha1 '2538fbd190d3dc357a2e7c2a07ea0fbefb768a13' + homepage "https://www.banu.com/tinyproxy/" + url "https://www.banu.com/pub/tinyproxy/1.8/tinyproxy-1.8.3.tar.bz2" + sha1 "2538fbd190d3dc357a2e7c2a07ea0fbefb768a13" - skip_clean 'var/run' + option "reverse", "Enable reverse proxying" - option 'reverse', "Enable reverse proxying" - - depends_on 'asciidoc' => :build + depends_on "asciidoc" => :build # Fix linking error, via MacPorts # See: https://trac.macports.org/ticket/27762 @@ -27,7 +25,7 @@ class Tinyproxy < Formula --disable-regexcheck ] - args << '--enable-reverse' if build.include? 'reverse' + args << "--enable-reverse" if build.include? "reverse" system "./configure", *args |
