homebrew-core/Formula/duff.rb
2015-06-05 14:47:57 +01:00

15 lines
491 B
Ruby

require 'formula'
class Duff < Formula
desc "Quickly find duplicates in a set of files from the command-line"
homepage 'http://duff.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/duff/duff/0.5.2/duff-0.5.2.tar.gz'
sha1 '23c4dd36f9829f52e436ca53c62d9f01007c7df6'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end