2010-07-27 10:27:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Duff <Formula
|
|
|
|
url 'http://prdownloads.sourceforge.net/duff/duff-0.4.tar.bz2'
|
|
|
|
homepage 'http://duff.sourceforge.net/'
|
|
|
|
md5 '9767e471232c1b4ee553ae40dbe60464'
|
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}", "--mandir=#{man}"
|
2010-07-27 10:27:48 +00:00
|
|
|
# this needs to be executable, but isn't for some reason...
|
|
|
|
system "chmod 755 ./install-sh"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|