homebrew-core/Formula/ghi.rb
Brett Koonce e1f98ecbbd ghi 0.9.1
2014-02-15 12:35:17 -06:00

16 lines
333 B
Ruby

require 'formula'
class Ghi < Formula
homepage 'https://github.com/stephencelis/ghi'
url 'https://github.com/stephencelis/ghi/archive/0.9.1.tar.gz'
sha1 '5aa347d092d80ad6097b811abc486f9da8dfee46'
def install
bin.install "ghi"
man1.install "man/ghi.1"
end
test do
system "#{bin}/ghi", "--version"
end
end