2013-05-28 11:27:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ghi < Formula
|
|
|
|
homepage 'https://github.com/stephencelis/ghi'
|
2013-09-12 20:39:14 +00:00
|
|
|
url 'https://github.com/stephencelis/ghi/archive/0.9.0.20130912.zip'
|
|
|
|
sha1 'c08baf9e6ac69131ee683725a27fc66dd0907a47'
|
2013-05-28 11:27:32 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "ghi"
|
|
|
|
man1.install "man/ghi.1"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2013-06-09 02:26:20 +00:00
|
|
|
system "#{bin}/ghi", "--version"
|
2013-05-28 11:27:32 +00:00
|
|
|
end
|
|
|
|
end
|