blob: 80a26d909664f4156b6869070a79e06daef8f09f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Fdupes < Formula
homepage 'http://code.google.com/p/fdupes/'
url 'https://fdupes.googlecode.com/files/fdupes-1.51.tar.gz'
sha1 '8276b39026f57a2f9503d7af18efca0a7d42b8ec'
def install
inreplace "Makefile", "gcc", "#{ENV.cc} #{ENV.cflags}"
system "make fdupes"
bin.install "fdupes"
man1.install "fdupes.1"
end
test do
touch "a"
touch "b"
dupes = shell_output("#{bin}/fdupes .").strip.split("\n").sort
assert_equal ["./a", "./b"], dupes
end
end
|