blob: 5e8e7494245d3ded97e1e5fc3de47ce429d55527 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | 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
    # makefile hardcodes include path to clens; since it's a
    # nonstandard path, Homebrew's standard include paths won't
    # fix this for people with nonstandard prefixes.
    # Note mg also has a Makefile; but MacOS make uses GNUmakefile
    inreplace "GNUmakefile", "$(includedir)/clens", "#{Formula['clens'].opt_include}/clens"
    system "make"
    bin.install "mg"
    doc.install "tutorial"
    man1.install "mg.1"
  end
end
 |