2012-08-09 15:33:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Darkstat < Formula
|
|
|
|
homepage 'http://unix4lyfe.org/darkstat/'
|
2013-11-29 17:36:58 +00:00
|
|
|
url 'http://unix4lyfe.org/darkstat/darkstat-3.0.717.tar.bz2'
|
|
|
|
sha1 '3a774ab48f9523a3a47a5f2b89174843a1b6fa76'
|
2012-08-09 15:33:10 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2013-03-25 18:34:46 +00:00
|
|
|
test do
|
|
|
|
system "#{sbin}/darkstat", "--version"
|
2012-08-09 15:33:10 +00:00
|
|
|
end
|
|
|
|
end
|