Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
MAME 146u3
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
ashgti authored and adamv committed Jul 24, 2012
1 parent 85de683 commit 9173ae8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Library/Formula/mame.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
require 'formula'

class Mame < Formula
homepage 'http://mamedev.org/'
url 'svn://messdev.no-ip.org/mess', :revision => 15603
version '146u3'

head 'svn://messdev.no-ip.org/mess'

depends_on :x11
depends_on 'sdl'

def install
ENV['MACOSX_USE_LIBSDL'] = '1'
ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS.x11_prefix}/include"
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')

system 'make', 'TARGET=mame', 'SUBTARGET=mame'

if MacOS.prefer_64_bit?
bin.install 'mame64' => 'mame'
else
bin.install 'mame'
end
end
end

0 comments on commit 9173ae8

Please sign in to comment.