aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmatrix.rb
blob: f4c9aaef13e09ca577a67d15dc3bbd9c0468b786 (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/'
  sha1 'ca078c10322a47e327f07a44c9a42b52eab5ad93'

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