add privoxy 3.0.16 formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
鲁痴 2010-04-05 14:49:51 +08:00 committed by Adam Vandenberg
parent 421d480a2c
commit 60341646fd
1 changed files with 15 additions and 0 deletions

15
Formula/privoxy.rb Normal file
View File

@ -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