mg 20130922

This brings in two years of fixes and features for mg.

Closes Homebrew/homebrew#23862.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Jasper Lievisse Adriaanse 2013-11-01 20:40:57 +01:00 committed by Jack Nagel
parent d812bb2755
commit 942bc999e2
1 changed files with 11 additions and 6 deletions

View File

@ -2,14 +2,19 @@ require 'formula'
class Mg < Formula
homepage 'http://homepage.boetes.org/software/mg/'
url 'http://homepage.boetes.org/software/mg/mg-20110905.tar.gz'
sha1 '51d2bac801cab33c9b552c36db5f8637fbbe9363'
url 'http://homepage.boetes.org/software/mg/mg-20130922.tar.gz'
sha1 'ddd461ebae8df3c016359956348329fd04906195'
depends_on 'bsdmake' => :build
depends_on 'clens'
def patches
{ :p0 => 'https://gist.github.com/jasperla/7264123/raw'}
end
def install
# -Wno-error=unused-but-set-variable requires GCC 4.6+
inreplace 'Makefile.in', '-Wno-error=unused-but-set-variable', ''
system "./configure"
system "make", "install", "prefix=#{prefix}", "mandir=#{man}"
ENV.j1
system "bsdmake"
bin.install "mg"
doc.install "tutorial"
end
end