2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-29 03:57:33 +00:00
|
|
|
|
2010-03-28 17:18:42 +00:00
|
|
|
class Mg < Formula
|
2011-09-07 04:43:52 +00:00
|
|
|
url 'http://homepage.boetes.org/software/mg/mg-20110905.tar.gz'
|
|
|
|
homepage 'http://homepage.boetes.org/software/mg/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '51d2bac801cab33c9b552c36db5f8637fbbe9363'
|
2009-09-29 03:57:33 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-07 04:43:52 +00:00
|
|
|
# -Wno-error=unused-but-set-variable requires GCC 4.6+
|
|
|
|
inreplace 'Makefile.in', '-Wno-error=unused-but-set-variable', ''
|
|
|
|
system "./configure"
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "prefix=#{prefix}", "mandir=#{man}"
|
2012-05-16 20:09:15 +00:00
|
|
|
doc.install "tutorial"
|
2009-09-29 03:57:33 +00:00
|
|
|
end
|
|
|
|
end
|