aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
author鲁痴2010-04-05 14:49:51 +0800
committerAdam Vandenberg2010-04-05 16:36:35 -0700
commit49b3b7d26250aa5358be75b437a58337ac328957 (patch)
treec87ca48c7f82c0fea2166294952494f1d32d2403 /Library
parenta7e56ec500a15965c94246b8af56adca16aa51ae (diff)
downloadhomebrew-49b3b7d26250aa5358be75b437a58337ac328957.tar.bz2
add privoxy 3.0.16 formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/privoxy.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/privoxy.rb b/Library/Formula/privoxy.rb
new file mode 100644
index 000000000..1b647b6d5
--- /dev/null
+++ b/Library/Formula/privoxy.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Privoxy <Formula
+ url 'http://downloads.sourceforge.net/project/ijbswa/Sources/3.0.16%20%28stable%29/privoxy-3.0.16-stable-src.tar.gz'
+ homepage 'http://www.privoxy.org'
+ version '3.0.16'
+ md5 '64d3ffcdf8307e04a375773bb4eb255e'
+
+ def install
+ system "autoreconf -i"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end