diff options
| author | Antoine | 2012-01-04 11:26:53 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-04 08:39:12 -0800 |
| commit | 64397ad99fbe604419a8559d0f01923b47effcf5 (patch) | |
| tree | 17e6f98fd6ad087f0b4651623bfa21bddb62e3b2 | |
| parent | 221456668706bf5686d61408114075dd8ccb2f95 (diff) | |
| download | homebrew-64397ad99fbe604419a8559d0f01923b47effcf5.tar.bz2 | |
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 <flangy@gmail.com>
| -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-*/*'] |
