ffedfd93fc
Closes Homebrew/homebrew#35770. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
15 lines
366 B
Ruby
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
|