blob: a32c15a0ef61aac35406d3d471497d5416a8d6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|