homebrew-core/Formula/cmatrix.rb
Baptiste Fontaine ffedfd93fc cmatrix: modernize + basic test added
Closes Homebrew/homebrew#35770.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-12 13:33:20 +00:00

15 lines
366 B
Ruby

class Cmatrix < Formula
homepage "http://www.asty.org/cmatrix/"
url "http://www.asty.org/cmatrix/dist/cmatrix-1.2a.tar.gz"
sha1 "ca078c10322a47e327f07a44c9a42b52eab5ad93"
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make", "install"
end
test do
system "#{bin}/cmatrix", "-V"
end
end