aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSimon Sigurdhsson2013-06-24 20:44:35 +0200
committerAdam Vandenberg2013-07-02 20:10:29 -0700
commitf52b5560b8a7704461008b6f5dc17eb0bad96a38 (patch)
treeb5078c6097e972de34b11e4628852ac2cf578ab3 /Library
parent2570e4bcf9eeb2c2f9151f6bb975630131f2fcd1 (diff)
downloadhomebrew-f52b5560b8a7704461008b6f5dc17eb0bad96a38.tar.bz2
fuzzy-find v0.5
Closes #20949. Closes #20844. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/fuzzy-find.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/fuzzy-find.rb b/Library/Formula/fuzzy-find.rb
new file mode 100644
index 000000000..8981a5776
--- /dev/null
+++ b/Library/Formula/fuzzy-find.rb
@@ -0,0 +1,19 @@
+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