blob: 48b3f073b3f56c729cb9936a170249df97c78190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Rsyslog < Formula
url 'http://rsyslog.com/files/download/rsyslog/rsyslog-5.8.0.tar.gz'
homepage 'http://www.rsyslog.com'
md5 '37562d0e71a24938a9ed7f242bd32d35'
depends_on 'pkg-config' => :build
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|