libstatgrab 0.91 (new formula)

Closes Homebrew/homebrew#45187.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Adam Flott 2015-10-20 10:07:25 -05:00 committed by Dominyk Tiller
parent 3f306339bd
commit 9d959c190a

18
Formula/libstatgrab.rb Normal file
View file

@ -0,0 +1,18 @@
class Libstatgrab < Formula
desc "Provides cross-platform access to statistics about the system."
homepage "http://www.i-scream.org/libstatgrab/"
url "http://ftp.i-scream.org/pub/i-scream/libstatgrab/libstatgrab-0.91.tar.gz"
sha256 "03e9328e4857c2c9dcc1b0347724ae4cd741a72ee11acc991784e8ef45b7f1ab"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/statgrab"
end
end