homebrew-core/Formula/ffind.rb
ilovezfs e087bd48bc ffind 1.0.1
Closes #6461.

Signed-off-by: Baptiste Fontaine <b@ptistefontaine.fr>
2016-11-01 11:22:23 +01:00

19 lines
436 B
Ruby

class Ffind < Formula
desc "Friendlier find"
homepage "https://github.com/sjl/friendly-find"
url "https://github.com/sjl/friendly-find/archive/v1.0.1.tar.gz"
sha256 "cf30e09365750a197f7e041ec9bbdd40daf1301e566cd0b1a423bf71582aad8d"
bottle :unneeded
conflicts_with "sleuthkit",
:because => "both install a 'ffind' executable."
def install
bin.install "ffind"
end
test do
system "#{bin}/ffind"
end
end