2012-10-06 12:41:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ffind < Formula
|
|
|
|
homepage 'https://github.com/sjl/friendly-find'
|
2013-03-26 06:20:21 +00:00
|
|
|
url 'https://github.com/sjl/friendly-find/archive/v0.3.1.tar.gz'
|
|
|
|
sha1 'c729a7ab2ae215d37a3e7cc0f16de24be1c965f6'
|
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
|
|
|
|
|
2013-03-25 18:35:18 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/ffind"
|
2012-10-06 12:41:48 +00:00
|
|
|
end
|
|
|
|
end
|