homebrew-core/Formula/collectd.rb

36 lines
859 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Collectd < Formula
2012-02-04 04:44:24 +00:00
url 'http://collectd.org/files/collectd-5.0.2.tar.bz2'
homepage 'http://collectd.org/'
2012-02-04 04:44:24 +00:00
md5 '47f70ae20801f10be355dc8109d696aa'
2011-03-22 05:20:50 +00:00
depends_on 'pkg-config' => :build
skip_clean :all
fails_with :clang do
build 318
cause <<-EOS.undent
Clang interacts poorly with the collectd-bundled libltdl,
causing configure to fail.
EOS
end
def install
2011-03-22 05:20:50 +00:00
# Use system Python; doesn't compile against 2.7
# -C enables the cache and resolves permissions errors
args = %W[-C
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--localstatedir=#{var}
--with-python=/usr/bin]
2011-04-08 18:16:37 +00:00
args << "--disable-embedded-perl" if MacOS.leopard?
system "./configure", *args
system "make install"
end
end