- 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>
master
Antoine 2012-01-04 11:26:53 +00:00 committed by Adam Vandenberg
parent 699259ee31
commit bbc536352d
1 changed files with 7 additions and 7 deletions

View File

@ -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-*/*']