blob: ab7866a9ae36e1f741529ab9c77150537321eafe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|