blob: 934174f612d33d679d5eda5763a2d6db8cac5ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  | 
require 'formula'
class Mess < Formula
  homepage 'http://www.mess.org/'
  url 'svn://dspnet.fr/mame/trunk', :revision => '26743'
  version '0.152'
  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')
    # 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
    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
  |