aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tinyproxy.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2014-03-06 22:28:20 -0800
committerAdam Vandenberg2014-03-06 22:28:20 -0800
commit45d8fb4d170c39675f67287c3297e4c23fb055e0 (patch)
tree1aecdffb1040aed4a10100dc0a0ec3b179f289a4 /Library/Formula/tinyproxy.rb
parentec7809463ae8be67e027aeaf035a7c9d69ba07b5 (diff)
downloadhomebrew-45d8fb4d170c39675f67287c3297e4c23fb055e0.tar.bz2
tinyproxy: remove unused skip_clean
Diffstat (limited to 'Library/Formula/tinyproxy.rb')
-rw-r--r--Library/Formula/tinyproxy.rb14
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