aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmatrix.rb
blob: 4869d0e46a493907eeca78dd437213e67629b812 (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