blob: 8981a57767c8034297181f65a80c684fbc899cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|