homebrew-core/Formula/cmatrix.rb

33 lines
1.3 KiB
Ruby

class Cmatrix < Formula
desc "Console Matrix"
homepage "https://github.com/abishekvashok/cmatrix/"
url "https://github.com/abishekvashok/cmatrix/archive/v2.0.tar.gz"
sha256 "ad93ba39acd383696ab6a9ebbed1259ecf2d3cf9f49d6b97038c66f80749e99a"
license "GPL-3.0"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "7df6894acc7156eefd61ac4cdfd5332b3e4165436d29cdc102ea03f03fb183ad"
sha256 cellar: :any_skip_relocation, big_sur: "745b7d4d2da66a0c4d159909cb16b0b6a29647a96ac6ae74fcf3b993fd730e6c"
sha256 cellar: :any_skip_relocation, catalina: "fcc9c366c560e89ee2b4f61d1bdece14379a2c598719fd2eef784564bf9ed677"
sha256 cellar: :any_skip_relocation, mojave: "1b3d3155c87c8f2b788fe18c3e72f04af4e79c609030e3447c3e17f9d3870c7b"
sha256 cellar: :any_skip_relocation, high_sierra: "2c3b0ce73a2f89ece3783885e44aba5f584268768283e650d8b6552bc00f058d"
sha256 cellar: :any_skip_relocation, x86_64_linux: "15aea39b9be08c26c94c9e2f8c82e977aaa7bf0884fbc4543114a52321e6cbc2"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
uses_from_macos "ncurses"
def install
system "autoreconf", "-i"
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make", "install"
end
test do
system "#{bin}/cmatrix", "-V"
end
end