aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmatrix.rb
blob: e0777265a893c3a863acdb1fe6d5fb3c9b3138fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Cmatrix <Formula
  url 'http://www.asty.org/cmatrix/dist/cmatrix-1.2a.tar.gz'
  homepage 'http://www.asty.org/cmatrix/'
  md5 'ebfb5733104a258173a9ccf2669968a1'

  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make"
    system "make install"
  end
end