978c20e67f
* Update ume and its family to 0.148u2. * Let homebrew decide which compiler compiling ume and its family. Note that ume's LD is abnormal. * Remove redefined header path. Closes Homebrew/homebrew#18613. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
556 B
Ruby
26 lines
556 B
Ruby
require 'formula'
|
|
|
|
class Ume < Formula
|
|
homepage 'http://mamedev.org/'
|
|
url 'svn://dspnet.fr/mame/trunk', :revision => '21963'
|
|
version '0.148u2'
|
|
|
|
head 'svn://dspnet.fr/mame/trunk'
|
|
|
|
depends_on :x11
|
|
depends_on 'sdl'
|
|
|
|
def install
|
|
ENV['MACOSX_USE_LIBSDL'] = '1'
|
|
ENV['INCPATH'] = "-I#{MacOS::X11.include}"
|
|
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
|
|
|
|
system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}", "TARGET=ume"
|
|
|
|
if MacOS.prefer_64_bit?
|
|
bin.install 'ume64' => 'ume'
|
|
else
|
|
bin.install 'ume'
|
|
end
|
|
end
|
|
end
|