homebrew-core/Formula/mg.rb
Seth Falcon 8f18f073f5 mg formula
mg is Micro GNU/emacs, this is a portable version of the mg maintained by
the OpenBSD team.
2009-09-30 00:05:36 +01:00

13 lines
315 B
Ruby

require 'brewkit'
class Mg <Formula
url 'http://www.dds.nl/~han/software/mg/mg-20090107.tar.gz'
homepage 'http://www.han.dds.nl/software/mg'
md5 'f25a139da44c3a2f760ffec531bd996e'
def install
system "./configure"
system "make prefix=#{prefix}"
system "make install prefix=#{prefix}"
end
end