28 lines
1.2 KiB
Ruby
28 lines
1.2 KiB
Ruby
class Dupseek < Formula
|
|
desc "interactive program to find and remove duplicate files."
|
|
homepage "http://www.beautylabs.net/software/dupseek.html"
|
|
url "http://www.beautylabs.net/software/dupseek-1.3.tgz"
|
|
sha256 "c046118160e4757c2f8377af17df2202d6b9f2001416bfaeb9cd29a19f075d93"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "c1782462d69bba5735a53dc65adb20beb42577fdb543debe9a7d19446fa16171" => :sierra
|
|
sha256 "576106465507f9281685d12dba4409e1b409f090fc6ac1397c92b5190a5416d4" => :el_capitan
|
|
sha256 "ec38b1caa009ca1c33efe85eb1b00cd7e37f67f3cf43b547f889e39f5be4d28a" => :yosemite
|
|
sha256 "ff34b6c5ac5fcf84bf532008fb5fd2b2cfd9db7736854efb09e451e54b370c37" => :mavericks
|
|
end
|
|
|
|
def install
|
|
bin.install "dupseek"
|
|
doc.install %w[changelog.txt doc.txt copyright credits.txt]
|
|
end
|
|
|
|
test do
|
|
mkdir "folder"
|
|
touch "folder/file1"
|
|
assert_equal "", shell_output("#{bin}/dupseek -b report -f de folder").chomp
|
|
touch "folder/file2"
|
|
assert_equal "folder\\/file2", shell_output("#{bin}/dupseek -b report -f de folder").chomp
|
|
assert_equal "folder\\/file1\nfolder\\/file2", shell_output("#{bin}/dupseek -b report -f e folder").chomp
|
|
end
|
|
end
|