From bbc536352d6e5f0362d5c0af0a50448c9d14f734 Mon Sep 17 00:00:00 2001 From: Antoine Date: Wed, 4 Jan 2012 11:26:53 +0000 Subject: [PATCH] Vice 2.3 - correctly builds with LLVM build 2336.1.00 - added missing dependency on jpeg - updated homepage link - --disable-zlibtest is not available in configure/make scripts anymore and is not needed Signed-off-by: Adam Vandenberg --- Formula/vice.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/vice.rb b/Formula/vice.rb index 884cf4940d7..a9001b813c8 100644 --- a/Formula/vice.rb +++ b/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-*/*']