homebrew-core/Formula/mg.rb
Michael B. Kulik 2eea09c189 mg: install manpage
Closes Homebrew/homebrew#24510.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-19 18:34:29 -08:00

16 lines
344 B
Ruby

require 'formula'
class Mg < Formula
homepage 'http://homepage.boetes.org/software/mg/'
url 'http://homepage.boetes.org/software/mg/mg-20131118.tar.gz'
sha1 '61f0d6ef2fd36acc51fa560aa67d4eccd3a6c2b9'
depends_on 'clens'
def install
system "make"
bin.install "mg"
doc.install "tutorial"
man1.install "mg.1"
end
end