26f503bd01
Closes Homebrew/homebrew#20949. Closes Homebrew/homebrew#20844. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
395 B
Ruby
19 lines
395 B
Ruby
require 'formula'
|
|
|
|
class FuzzyFind < Formula
|
|
homepage "https://github.com/silentbicycle/ff"
|
|
url "https://github.com/silentbicycle/ff/archive/v0.5-first-form.tar.gz"
|
|
version "0.5"
|
|
sha1 "698526ae2c725763da0990a4112632ac4b3194c8"
|
|
|
|
head 'https://github.com/silentbicycle/ff.git'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "ff"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ff", "-t"
|
|
end
|
|
end
|