homebrew-core/Formula/collectd.rb
Piotr Usewicz bf83a0b97a Updated collectd to 4.10.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-01 07:45:30 -07:00

16 lines
365 B
Ruby

require 'formula'
class Collectd <Formula
url 'http://collectd.org/files/collectd-4.10.0.tar.bz2'
homepage 'http://collectd.org/'
md5 '2f671d267bf6cb1a9d385107ba7b734d'
def skip_clean? path
true
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end