ume 0.147
Closes Homebrew/homebrew#16771. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
parent
83ceaec722
commit
a0109f844e
1 changed files with 26 additions and 0 deletions
26
Formula/ume.rb
Normal file
26
Formula/ume.rb
Normal file
|
@ -0,0 +1,26 @@
|
|||
require 'formula'
|
||||
|
||||
class Ume < Formula
|
||||
homepage 'http://mamedev.org/'
|
||||
url 'svn://dspnet.fr/mame/trunk', :revision => 17961
|
||||
version '0.147'
|
||||
|
||||
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
|
Loading…
Reference in a new issue