homebrew-core/Formula/mess.rb
mbcoguno c864a6c959 ume & mess 0.149u1
Closes Homebrew/homebrew#21703.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-06 09:00:15 -07:00

27 lines
599 B
Ruby

require 'formula'
class Mess < Formula
homepage 'http://www.mess.org/'
url 'svn://dspnet.fr/mame/trunk', :revision => '24476'
version '0.149u1'
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=mess", "SUBTARGET=mess"
if MacOS.prefer_64_bit?
bin.install 'mess64' => 'mess'
else
bin.install 'mess'
end
end
end