homebrew-core/Formula/duff.rb
Kyle Harrigan 49a88bf08f duff 0.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-06 19:05:06 -07:00

13 lines
397 B
Ruby

require 'formula'
class Duff < Formula
url 'http://downloads.sourceforge.net/project/duff/duff/0.5/duff-0.5.tar.gz'
homepage 'http://duff.sourceforge.net/'
md5 'e42bedb278ab41081df3ebb9ce1cbe1d'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end