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