aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lout.rb
blob: cd0ffebb8d3d01e1c85e769b393679f9ee937656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Lout < Formula
  url 'ftp://ftp.cs.usyd.edu.au/jeff/lout/lout-3.38.tar.gz'
  homepage 'http://sourceforge.net/apps/mediawiki/lout/index.php'
  sha1 '2c4aec500dc27a00298f8265b9249d74d97e5466'

  def install
    inreplace "makefile" do |s|
      s.change_make_var! "PREFIX", prefix
      s.change_make_var! "LOUTLIBDIR", lib
      s.change_make_var! "LOUTDOCDIR", doc
      s.change_make_var! "MANDIR", man1
    end
    bin.mkpath
    man1.mkpath
    (doc + 'lout').mkpath
    system "make allinstall"
  end
end