homebrew-core/Formula/collectd.rb
spahl 9e46d77f65 collectd 4.9.1
A daemon which collects system performance statistics periodically.
2010-01-24 13:14:30 +00:00

12 lines
325 B
Ruby

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