blob: 8160fc26caf309f305131096ae30677adf8668a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Darkstat < Formula
homepage 'http://unix4lyfe.org/darkstat/'
url 'http://unix4lyfe.org/darkstat/darkstat-3.0.715.tar.bz2'
sha1 'e635f7ae0c6dfe3a7d1fac3855ca733187163973'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
end
def test
system "#{sbin}/darkstat --version"
end
end
|