6b7a460db6
Closes Homebrew/homebrew#15593.
18 lines
371 B
Ruby
18 lines
371 B
Ruby
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
|