0e9c71bc32
QStat is a command-line utility for collecting real-time statistics from on-line game servers. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
422 B
Ruby
14 lines
422 B
Ruby
require 'formula'
|
|
|
|
class Qstat < Formula
|
|
homepage 'http://qstat.sourceforge.net'
|
|
url 'http://sourceforge.net/projects/qstat/files/qstat/qstat-2.11/qstat-2.11.tar.gz'
|
|
sha1 '107796ab7512bdfdd0c3bb06a3458432b39458c7'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|