2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-23 19:06:17 +00:00
|
|
|
|
|
|
|
class Vice <Formula
|
2009-11-22 03:59:59 +00:00
|
|
|
head 'http://vice-emu.svn.sourceforge.net/svnroot/vice-emu/trunk/vice/',
|
|
|
|
:revision => '21722'
|
|
|
|
homepage 'http://www.viceteam.org/'
|
|
|
|
version '2.1.22'
|
|
|
|
|
|
|
|
def remove_unused_icons
|
|
|
|
Pathname.glob libexec+'*.app' do |d|
|
|
|
|
appname = File.basename(d, '.app')
|
|
|
|
|
|
|
|
Pathname.glob d+'Contents/Resources/x*.icns' do |g|
|
|
|
|
File.unlink g if File.basename(g, '.icns') != appname
|
|
|
|
end
|
|
|
|
end
|
2009-09-23 19:06:17 +00:00
|
|
|
end
|
2009-11-22 03:59:59 +00:00
|
|
|
|
2009-09-23 19:06:17 +00:00
|
|
|
def install
|
|
|
|
ENV.libpng
|
2009-11-22 03:59:59 +00:00
|
|
|
# Cannot build with LLVM
|
|
|
|
ENV.gcc_4_2
|
2009-09-23 19:06:17 +00:00
|
|
|
|
2009-11-22 03:59:59 +00:00
|
|
|
system "./autogen.sh"
|
2009-09-23 19:06:17 +00:00
|
|
|
# Disable the zlibtest, we know we have it.
|
|
|
|
# Use Cocoa instead of X
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--with-cocoa",
|
|
|
|
"--without-x",
|
|
|
|
"--disable-zlibtest"
|
|
|
|
system "make"
|
|
|
|
system "make bindist"
|
|
|
|
|
|
|
|
libexec.install Dir['vice-macosx-*/*']
|
|
|
|
|
2009-11-22 03:59:59 +00:00
|
|
|
remove_unused_icons
|
2009-09-23 19:06:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
"Cocoa apps for these emulators have been installed to #{libexec}."
|
|
|
|
end
|
|
|
|
end
|