homebrew-core/Formula/fuzzy-find.rb
Simon Sigurdhsson 26f503bd01 fuzzy-find v0.5
Closes Homebrew/homebrew#20949.
Closes Homebrew/homebrew#20844.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-07-02 20:10:29 -07:00

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