2009-12-23 21:52:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Virtuoso < Formula
|
2012-01-03 16:25:33 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/virtuoso/virtuoso/6.1.4/virtuoso-opensource-6.1.4.tar.gz'
|
2009-12-23 21:52:33 +00:00
|
|
|
homepage 'http://virtuoso.openlinksw.com/wiki/main/'
|
2012-01-03 16:25:33 +00:00
|
|
|
md5 '7110a0b4b171b84850d346f4fe648172'
|
2009-12-23 21:52:33 +00:00
|
|
|
|
|
|
|
# If gawk isn't found, make fails deep into the process.
|
|
|
|
depends_on 'gawk'
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
2009-12-23 21:52:33 +00:00
|
|
|
|
|
|
|
def install
|
2011-03-18 17:30:47 +00:00
|
|
|
ENV.m64 if MacOS.prefer_64_bit?
|
2009-12-23 21:52:33 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
NOTE: the Virtuoso server will start up several times on port 1111
|
|
|
|
during the install process.
|
|
|
|
EOS
|
|
|
|
end
|
2009-12-23 21:52:33 +00:00
|
|
|
end
|