9c5b60fedc
Closes Homebrew/homebrew#15329. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
287 B
Ruby
15 lines
287 B
Ruby
require 'formula'
|
|
|
|
class Ffind < Formula
|
|
homepage 'https://github.com/sjl/friendly-find'
|
|
url 'https://github.com/sjl/friendly-find/tarball/v0.2.0'
|
|
sha1 'b902ebb9966c1394628e52d0dea3b1ba7c421720'
|
|
|
|
def install
|
|
bin.install "ffind"
|
|
end
|
|
|
|
def test
|
|
system "ffind"
|
|
end
|
|
end
|