dircproxy 1.2.0-RC1

Upgrade dircproxy to version 1.2.0-RC1.
Remove the `mandir` because it installs correctly now.
Add `--enable-ssl` to increase functionality.
Tested with clang and llvm from XCode-4.3.2 on Lion.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
nibbles 2bits 2012-06-10 13:34:16 -07:00 committed by Adam Vandenberg
parent 9f11eb60bb
commit bce5353c4e
1 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@ require 'formula'
class Dircproxy < Formula
homepage 'http://code.google.com/p/dircproxy/'
url 'http://dircproxy.googlecode.com/files/dircproxy-1.1.0.tar.gz'
sha1 'a967a542c4c6063e8f977276b68deb6692c9d150'
url 'http://dircproxy.googlecode.com/files/dircproxy-1.2.0-RC1.tar.gz'
sha1 '7dc4b3aa2e10222f74e280de69c41f571335a96b'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
"--enable-ssl"
system "make install"
end
end