homebrew-core/Formula/cmatrix.rb

14 lines
331 B
Ruby
Raw Normal View History

2009-11-18 09:37:16 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Cmatrix < Formula
homepage 'http://www.asty.org/cmatrix/'
2013-01-27 02:17:53 +00:00
url 'http://www.asty.org/cmatrix/dist/cmatrix-1.2a.tar.gz'
sha1 'ca078c10322a47e327f07a44c9a42b52eab5ad93'
2009-11-18 09:37:16 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
2009-11-18 09:37:16 +00:00
system "make"
system "make install"
end
end