d4b2855764
Closes Homebrew/homebrew#25091. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
424 B
Ruby
20 lines
424 B
Ruby
require 'formula'
|
|
|
|
class FuzzyFind < Formula
|
|
homepage "https://github.com/silentbicycle/ff"
|
|
url "https://github.com/silentbicycle/ff/archive/v0.6-flag-features.tar.gz"
|
|
version "0.6.0"
|
|
sha1 "13429471e6b51613361128e4d31f2e62013e2c2b"
|
|
|
|
head 'https://github.com/silentbicycle/ff.git'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "ff"
|
|
man1.install "ff.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ff", "-t"
|
|
end
|
|
end
|