24 lines
876 B
Ruby
24 lines
876 B
Ruby
class Argus < Formula
|
|
desc "Audit Record Generation and Utilization System server"
|
|
homepage "https://qosient.com/argus/"
|
|
url "https://qosient.com/argus/src/argus-3.0.8.2.tar.gz"
|
|
sha256 "ca4e3bd5b9d4a8ff7c01cc96d1bffd46dbd6321237ec94c52f8badd51032eeff"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "faf6ef808e9ff867eed42586ae6c27f84b66933559e9960fb48853b67325fb20" => :high_sierra
|
|
sha256 "42487c51fa731752e10da402b5fac0f973ee090eaad19f8f4fd52fc5317c9cfb" => :sierra
|
|
sha256 "ea46f2010610e46c120e2df100d61e01c21ee58627e105273c0e0a76437150e1" => :el_capitan
|
|
sha256 "b4d359943e8404d7c6a340c36bbc4d42e14a56cd80e17a997114fdc6f76552d8" => :yosemite
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match "Pages", shell_output("#{bin}/argus-vmstat")
|
|
end
|
|
end
|