blob: 6b6f64d93aaddfca20c1c836d69113d1c8440b48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Rdfind < Formula
homepage 'http://rdfind.pauldreik.se'
url 'http://rdfind.pauldreik.se/rdfind-1.3.4.tar.gz'
sha1 'c01bd2910cdec885b6c24164a389457e4f01ef61'
depends_on 'nettle'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
mkdir 'folder'
touch 'folder/file1'
touch 'folder/file2'
system "#{bin}/rdfind -deleteduplicates true -ignoreempty false folder"
File.exist?('folder/file1')==true
File.exist?('folder/file2')==false
end
end
|