homebrew-core/Formula/collectd.rb
Jack Nagel 53473b6bf5 Clean up MacOS version method usage
The MacOS.version? family of methods (other than "leopard?") are poorly
defined and lead to confusing code. Replace them in formulae with more
explicit comparisons.

"MacOS.version" is a special version object that can be compared to
numerics, symbols, and strings using the standard Ruby comparison
methods.

The old methods were moved to compat when the version comparison code
was merged, and they must remain there "forever", but they should not be
used in new code.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-09-10 16:16:54 -05:00

35 lines
877 B
Ruby

require 'formula'
class Collectd < Formula
homepage 'http://collectd.org/'
url 'http://collectd.org/files/collectd-5.1.0.tar.bz2'
sha1 '77545833b77a03ec02219bfb925e6a1f3463ddef'
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
# 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]
args << "--disable-embedded-perl" if MacOS.version == :leopard
system "./configure", *args
system "make install"
end
end