homebrew-core/Formula/virtuoso.rb
Brett Koonce c3c5001117 virtuoso 6.1.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-04 09:25:26 -08:00

24 lines
668 B
Ruby

require 'formula'
class Virtuoso < Formula
homepage 'http://virtuoso.openlinksw.com/wiki/main/'
url 'http://downloads.sourceforge.net/project/virtuoso/virtuoso/6.1.6/virtuoso-opensource-6.1.6.tar.gz'
sha1 '03bc14b1627d16d76687f8b8659801966aab3fb4'
# If gawk isn't found, make fails deep into the process.
depends_on 'gawk'
skip_clean :all
def install
ENV.m64 if MacOS.prefer_64_bit?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
def caveats; <<-EOS.undent
NOTE: the Virtuoso server will start up several times on port 1111
during the install process.
EOS
end
end