homebrew-core/Formula/collectd.rb

24 lines
599 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Collectd < Formula
url 'http://collectd.org/files/collectd-5.0.0.tar.bz2'
homepage 'http://collectd.org/'
md5 '7bfea6e82d35b36f16d1da2c71397213'
2011-03-22 05:20:50 +00:00
depends_on 'pkg-config' => :build
skip_clean :all
def install
2011-03-22 05:20:50 +00:00
# Use system Python; doesn't compile against 2.7
args = ["--disable-debug", "--disable-dependency-tracking",
2011-03-22 05:20:50 +00:00
"--with-python=/usr/bin",
"--prefix=#{prefix}",
"--localstatedir=#{var}"]
2011-04-08 18:16:37 +00:00
args << "--disable-embedded-perl" if MacOS.leopard?
system "./configure", *args
system "make install"
end
end