2011-03-10 05:11:03 +00:00
|
|
|
class Duff < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Quickly find duplicates in a set of files from the command-line"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://duff.sourceforge.net/"
|
|
|
|
url "https://downloads.sourceforge.net/project/duff/duff/0.5.2/duff-0.5.2.tar.gz"
|
|
|
|
sha256 "15b721f7e0ea43eba3fd6afb41dbd1be63c678952bf3d80350130a0e710c542e"
|
2010-07-27 10:27:48 +00:00
|
|
|
|
|
|
|
def install
|
2013-01-27 22:58:34 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2010-07-27 10:27:48 +00:00
|
|
|
end
|
|
|
|
end
|