diff options
| -rw-r--r-- | Library/Formula/vice.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/vice.rb b/Library/Formula/vice.rb index 884cf4940..a9001b813 100644 --- a/Library/Formula/vice.rb +++ b/Library/Formula/vice.rb @@ -1,9 +1,11 @@ require 'formula' class Vice < Formula - url "http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-2.2.tar.gz" - md5 "6737f540806205384e9129026898b0a1" - homepage 'http://www.viceteam.org/' + url "http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-2.3.tar.gz" + md5 "b48d137874daad50c087a0686cbdde34" + homepage 'http://vice-emu.sourceforge.net/' + + depends_on 'jpeg' def remove_unused_icons Pathname.glob libexec+'*.app' do |d| @@ -15,18 +17,16 @@ class Vice < Formula end end - fails_with_llvm "Cannot build with LLVM" + fails_with_llvm :build => 2335 def install ENV.libpng - # Disable the zlibtest, we know we have it. # Use Cocoa instead of X system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-cocoa", - "--without-x", - "--disable-zlibtest" + "--without-x" system "make" system "make bindist" prefix.install Dir['vice-macosx-*/*'] |
