collectd 4.10.2
This commit is contained in:
parent
34884bd8e0
commit
696d2cf18f
1 changed files with 8 additions and 3 deletions
|
@ -1,15 +1,20 @@
|
|||
require 'formula'
|
||||
|
||||
class Collectd < Formula
|
||||
url 'http://collectd.org/files/collectd-4.10.1.tar.bz2'
|
||||
url 'http://collectd.org/files/collectd-4.10.2.tar.bz2'
|
||||
homepage 'http://collectd.org/'
|
||||
md5 '8cd79b4ebdb9dbeb51ba52d3463a06ef'
|
||||
md5 '85d9d8d0a1327782661e3c89800aa70e'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
|
||||
skip_clean :all
|
||||
|
||||
def install
|
||||
# Use system Python; doesn't compile against 2.7
|
||||
args = ["--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}", "--localstatedir=#{var}"]
|
||||
"--with-python=/usr/bin",
|
||||
"--prefix=#{prefix}",
|
||||
"--localstatedir=#{var}"]
|
||||
args << "--disable-embedded-perl" if MACOS_VERSION < 10.6
|
||||
|
||||
system "./configure", *args
|
||||
|
|
Loading…
Reference in a new issue