rsyslog 5.8.0
This commit is contained in:
parent
a0e6f0554f
commit
89a199c089
1 changed files with 28 additions and 0 deletions
28
Formula/rsyslog.rb
Normal file
28
Formula/rsyslog.rb
Normal file
|
@ -0,0 +1,28 @@
|
|||
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
|
||||
|
||||
def options
|
||||
[['--universal', 'Make a 32/64-bit Intel build.']]
|
||||
end
|
||||
|
||||
def install
|
||||
if ARGV.build_universal?
|
||||
ENV['CC'] = "gcc -arch i386 -arch x86_64"
|
||||
ENV['CXX'] = "g++ -arch i386 -arch x86_64"
|
||||
ENV['CPP'] = "gcc -E"
|
||||
ENV['CXXCPP'] = "g++ -E"
|
||||
system "./configure", "--prefix=#{prefix}"
|
||||
else
|
||||
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
end
|
||||
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue