homebrew-core/Formula/duff.rb

14 lines
410 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Duff < Formula
url 'http://downloads.sourceforge.net/project/duff/duff/0.5.2/duff-0.5.2.tar.gz'
homepage 'http://duff.sourceforge.net/'
sha1 '23c4dd36f9829f52e436ca53c62d9f01007c7df6'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end