homebrew-core/Formula/collectd.rb
William Lynch af9fb23b26 collectd - var should not be inside the Cellar directory
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-08 05:47:08 -07:00

14 lines
371 B
Ruby

require 'formula'
class Collectd <Formula
url 'http://collectd.org/files/collectd-4.10.1.tar.bz2'
homepage 'http://collectd.org/'
md5 '8cd79b4ebdb9dbeb51ba52d3463a06ef'
skip_clean :all
def install
system "./configure", "--prefix=#{prefix}", "--localstatedir=#{var}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end