2009-12-23 21:52:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Virtuoso < Formula
|
2009-12-23 21:52:33 +00:00
|
|
|
homepage 'http://virtuoso.openlinksw.com/wiki/main/'
|
2012-03-21 13:54:33 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/virtuoso/virtuoso/6.1.5/virtuoso-opensource-6.1.5.tar.gz'
|
|
|
|
md5 '61b53395e14a11dd7e7715b50261b9eb'
|
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
|