95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
23 lines
652 B
Ruby
23 lines
652 B
Ruby
class Cmatrix < Formula
|
|
desc "Console Matrix"
|
|
homepage "http://www.asty.org/cmatrix/"
|
|
url "http://www.asty.org/cmatrix/dist/cmatrix-1.2a.tar.gz"
|
|
sha256 "1fa6e6caea254b6fe70a492efddc1b40ad7ccb950a5adfd80df75b640577064c"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "5716eb3e6438f79fde10d103cc51d44621be0851" => :yosemite
|
|
sha1 "470186c129b19721b3504e88ecb66ae756722251" => :mavericks
|
|
sha1 "f57962ae1d59e81ceffa6534a43c849a993b6f38" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/cmatrix", "-V"
|
|
end
|
|
end
|