homebrew-core/Formula/vice.rb

39 lines
1.2 KiB
Ruby
Raw Normal View History

require 'formula'
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-12-27 23:45:43 +00:00
url 'http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-2.4.tar.gz'
sha1 '719aa96cc72e7578983fadea1a31c21898362bc7'
2012-09-26 03:20:04 +00:00
depends_on 'pkg-config' => :build
depends_on 'jpeg'
depends_on :libpng
2012-09-26 03:20:04 +00:00
depends_on 'giflib' => :optional
depends_on 'lame' => :optional
fails_with :llvm do
build 2335
end
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.
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-cocoa",
2012-09-26 03:20:04 +00:00
"--without-x",
"--enable-static-lame",
# VICE can't compile against FFMPEG newer than 0.11:
# http://sourceforge.net/tracker/?func=detail&aid=3585471&group_id=223021&atid=1057617
"--disable-ffmpeg"
system "make"
system "make bindist"
prefix.install Dir['vice-macosx-*/*']
end
def caveats
"Cocoa apps for these emulators have been installed to #{prefix}."
end
end