homebrew-core/Formula/duff.rb

14 lines
501 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
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"
sha256 "15b721f7e0ea43eba3fd6afb41dbd1be63c678952bf3d80350130a0e710c542e"
def install
2013-01-27 22:58:34 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make", "install"
end
end