blob: 9e4a0be2de938b95c603ccc70c63bfb4dd20d520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Ghi < Formula
homepage 'https://github.com/stephencelis/ghi'
url 'https://github.com/stephencelis/ghi/archive/0.9.0.20130504.zip'
sha1 '64537496f2214bdfbd7a2e71f57eabd6de90108b'
def install
bin.install "ghi"
man1.install "man/ghi.1"
end
test do
system "#{bin}/ghi", "--version"
end
end
|