2012-12-27 20:24:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ume < Formula
|
|
|
|
homepage 'http://mamedev.org/'
|
2013-02-18 01:35:11 +00:00
|
|
|
url 'svn://dspnet.fr/mame/trunk', :revision => '20928'
|
|
|
|
version '0.148u1'
|
2012-12-27 20:24:41 +00:00
|
|
|
|
|
|
|
head 'svn://dspnet.fr/mame/trunk'
|
|
|
|
|
|
|
|
depends_on :x11
|
|
|
|
depends_on 'sdl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['MACOSX_USE_LIBSDL'] = '1'
|
|
|
|
ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS::X11.include}"
|
|
|
|
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
|
|
|
|
|
|
|
|
system 'make', 'TARGET=ume'
|
|
|
|
|
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
bin.install 'ume64' => 'ume'
|
|
|
|
else
|
|
|
|
bin.install 'ume'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|