2013-06-24 18:44:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class FuzzyFind < Formula
|
|
|
|
homepage "https://github.com/silentbicycle/ff"
|
2013-12-09 20:24:26 +00:00
|
|
|
url "https://github.com/silentbicycle/ff/archive/v0.6-flag-features.tar.gz"
|
|
|
|
version "0.6.0"
|
|
|
|
sha1 "13429471e6b51613361128e4d31f2e62013e2c2b"
|
2013-06-24 18:44:35 +00:00
|
|
|
|
|
|
|
head 'https://github.com/silentbicycle/ff.git'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "ff"
|
2013-12-09 20:24:26 +00:00
|
|
|
man1.install "ff.1"
|
2013-06-24 18:44:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/ff", "-t"
|
|
|
|
end
|
|
|
|
end
|