blob: 768e33ea5dc275c293a7919c4589fe2d608c3f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Ffind < Formula
homepage 'https://github.com/sjl/friendly-find'
url 'https://github.com/sjl/friendly-find/tarball/v0.3.1'
sha1 '891207067c0d8715b48e91a52ff815aa73d7e139'
conflicts_with 'sleuthkit',
:because => "both install a 'ffind' executable."
def install
bin.install "ffind"
end
def test
system "ffind"
end
end
|