ef9880017f
Closes Homebrew/homebrew#22504. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
339 B
Ruby
16 lines
339 B
Ruby
require 'formula'
|
|
|
|
class Ghi < Formula
|
|
homepage 'https://github.com/stephencelis/ghi'
|
|
url 'https://github.com/stephencelis/ghi/archive/0.9.0.20130912.zip'
|
|
sha1 'c08baf9e6ac69131ee683725a27fc66dd0907a47'
|
|
|
|
def install
|
|
bin.install "ghi"
|
|
man1.install "man/ghi.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ghi", "--version"
|
|
end
|
|
end
|