3e604a5be8
Closes #46877. Signed-off-by: Rui Chen <chenrui333@gmail.com>
30 lines
1.2 KiB
Ruby
30 lines
1.2 KiB
Ruby
class Qstat < Formula
|
|
desc "Query Quake servers from the command-line"
|
|
homepage "https://github.com/multiplay/qstat"
|
|
url "https://github.com/multiplay/qstat/archive/v2.14.tar.gz"
|
|
sha256 "ae906b74d4cce8057b5a265b76859101da8104c2a07c05f11a51f7c9f033ef8b"
|
|
|
|
bottle do
|
|
sha256 "1225042ca663297e1a38ab1da3a13998fa169dea184c569a17c3f0905894a64f" => :mojave
|
|
sha256 "a1eb6ad1e866332084773b799ae547f75d4b9f9684ce44d6177c8ee6d0bf3778" => :high_sierra
|
|
sha256 "816789bcb602cd112a64dadad943752fed3c7f32785e60a10e486026d5b26adc" => :sierra
|
|
sha256 "2f674bb005dab3dcce93c131e5b238f0813638a974f82c85bffdbbeef49eb698" => :el_capitan
|
|
sha256 "d63924f48565d8c17295544765e0dac015d7189c7608179dd9d0848c69f9e67b" => :yosemite
|
|
sha256 "96b05212759a5a648f24ade7334738bda8d4ef4eeb8669e31afe45ed6293dc52" => :mavericks
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
|
|
def install
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/qstat", "--help"
|
|
end
|
|
end
|