bce5353c4e
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>
14 lines
416 B
Ruby
14 lines
416 B
Ruby
require 'formula'
|
|
|
|
class Dircproxy < Formula
|
|
homepage 'http://code.google.com/p/dircproxy/'
|
|
url 'http://dircproxy.googlecode.com/files/dircproxy-1.2.0-RC1.tar.gz'
|
|
sha1 '7dc4b3aa2e10222f74e280de69c41f571335a96b'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-ssl"
|
|
system "make install"
|
|
end
|
|
end
|