2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-23 19:06:17 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Vice < Formula
|
2012-09-26 02:54:08 +00:00
|
|
|
homepage 'http://vice-emu.sourceforge.net/'
|
2012-01-04 11:26:53 +00:00
|
|
|
url "http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-2.3.tar.gz"
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '5e7e1a375a4ca8c4895dc1552162955fdffce296'
|
2012-01-04 11:26:53 +00:00
|
|
|
|
2012-09-26 03:20:04 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-01-04 11:26:53 +00:00
|
|
|
depends_on 'jpeg'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :libpng
|
2012-09-26 03:20:04 +00:00
|
|
|
depends_on 'giflib' => :optional
|
|
|
|
depends_on 'lame' => :optional
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2335
|
|
|
|
end
|
2011-10-15 04:36:38 +00:00
|
|
|
|
2009-09-23 19:06:17 +00:00
|
|
|
def install
|
|
|
|
# Use Cocoa instead of X
|
2012-09-26 03:20:04 +00:00
|
|
|
# Use a static lame, otherwise Vice is hard-coded to look in
|
|
|
|
# /opt for the library.
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2009-09-23 19:06:17 +00:00
|
|
|
"--with-cocoa",
|
2012-09-26 03:20:04 +00:00
|
|
|
"--without-x",
|
|
|
|
"--enable-static-lame"
|
2009-09-23 19:06:17 +00:00
|
|
|
system "make"
|
|
|
|
system "make bindist"
|
2010-06-09 20:53:04 +00:00
|
|
|
prefix.install Dir['vice-macosx-*/*']
|
2009-09-23 19:06:17 +00:00
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2009-09-23 19:06:17 +00:00
|
|
|
def caveats
|
2010-06-09 20:53:04 +00:00
|
|
|
"Cocoa apps for these emulators have been installed to #{prefix}."
|
2009-09-23 19:06:17 +00:00
|
|
|
end
|
|
|
|
end
|