2012-10-06 12:41:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ffind < Formula
|
|
|
|
homepage 'https://github.com/sjl/friendly-find'
|
2012-12-15 15:41:24 +00:00
|
|
|
url 'https://github.com/sjl/friendly-find/tarball/v0.3.1'
|
|
|
|
sha1 '891207067c0d8715b48e91a52ff815aa73d7e139'
|
2012-10-06 12:41:48 +00:00
|
|
|
|
2012-12-24 17:47:30 +00:00
|
|
|
conflicts_with 'sleuthkit',
|
|
|
|
:because => "both install a 'ffind' executable."
|
|
|
|
|
2012-10-06 12:41:48 +00:00
|
|
|
def install
|
|
|
|
bin.install "ffind"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "ffind"
|
|
|
|
end
|
|
|
|
end
|