2012-10-06 12:41:48 +00:00
|
|
|
class Ffind < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Friendlier find"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/sjl/friendly-find"
|
|
|
|
url "https://github.com/sjl/friendly-find/archive/v0.3.2.tar.gz"
|
|
|
|
sha256 "4fe9b5fb4d64cc3a006b1496cf0a825a2494706c413778b77bbcf0fb9cfbbf80"
|
2012-10-06 12:41:48 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
conflicts_with "sleuthkit",
|
2012-12-24 17:47:30 +00:00
|
|
|
: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
|