20 lines
395 B
Ruby
20 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
|