2012-07-23 06:13:39 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mess < Formula
|
|
|
|
homepage 'http://www.mess.org/'
|
2013-12-25 00:11:24 +00:00
|
|
|
url 'svn://dspnet.fr/mame/trunk', :revision => '26743'
|
|
|
|
version '0.152'
|
2012-07-23 06:13:39 +00:00
|
|
|
|
2012-09-29 03:13:20 +00:00
|
|
|
head 'svn://dspnet.fr/mame/trunk'
|
2012-07-23 06:13:39 +00:00
|
|
|
|
|
|
|
depends_on :x11
|
|
|
|
depends_on 'sdl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['MACOSX_USE_LIBSDL'] = '1'
|
2013-03-20 15:19:32 +00:00
|
|
|
ENV['INCPATH'] = "-I#{MacOS::X11.include}"
|
2012-07-23 06:13:39 +00:00
|
|
|
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
|
|
|
|
|
2013-12-29 14:09:49 +00:00
|
|
|
# Avoid memory allocation runtime error:
|
|
|
|
# Error: attempt to free untracked memory in (null)(0)!
|
|
|
|
# Ignoring MAME exception: Error: attempt to free untracked memory
|
|
|
|
ENV.O2 if ENV.compiler == :clang
|
|
|
|
|
2013-03-20 15:19:32 +00:00
|
|
|
system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}",
|
|
|
|
"TARGET=mess", "SUBTARGET=mess"
|
2012-07-23 06:13:39 +00:00
|
|
|
|
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
bin.install 'mess64' => 'mess'
|
|
|
|
else
|
|
|
|
bin.install 'mess'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|