diff options
Diffstat (limited to 'Library/Formula/virtuoso.rb')
| -rw-r--r-- | Library/Formula/virtuoso.rb | 17 | 
1 files changed, 7 insertions, 10 deletions
| diff --git a/Library/Formula/virtuoso.rb b/Library/Formula/virtuoso.rb index a96045242..96526cf3c 100644 --- a/Library/Formula/virtuoso.rb +++ b/Library/Formula/virtuoso.rb @@ -8,20 +8,17 @@ class Virtuoso <Formula    # If gawk isn't found, make fails deep into the process.    depends_on 'gawk' -  def skip_clean? path -    true -  end - -  def caveats -    <<-EOS.undent -      NOTE: the Virtuoso server will start up several times on port 1111 -      during the install process. -    EOS -  end +  skip_clean :all    def install      ENV.m64 if MACOS_VERSION >= 10.6 and Hardware.is_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 | 
