collectd 4.9.1

A daemon which collects system performance statistics periodically.
This commit is contained in:
spahl 2010-01-24 12:44:47 +01:00 committed by Max Howell
parent 7ff9f2e04e
commit 9e46d77f65

12
Formula/collectd.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Collectd <Formula
url 'http://collectd.org/files/collectd-4.9.1.tar.bz2'
homepage 'http://collectd.org/'
md5 '5753496651c8c84afaea1fe290876bfc'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end