diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mess.rb | 9 | ||||
| -rw-r--r-- | Library/Formula/ume.rb | 8 |
2 files changed, 9 insertions, 8 deletions
diff --git a/Library/Formula/mess.rb b/Library/Formula/mess.rb index 9740f0eb3..22453c34f 100644 --- a/Library/Formula/mess.rb +++ b/Library/Formula/mess.rb @@ -2,8 +2,8 @@ require 'formula' class Mess < Formula homepage 'http://www.mess.org/' - url 'svn://dspnet.fr/mame/trunk', :revision => '20928' - version '0.148u1' + url 'svn://dspnet.fr/mame/trunk', :revision => '21963' + version '0.148u2' head 'svn://dspnet.fr/mame/trunk' @@ -12,10 +12,11 @@ class Mess < Formula def install ENV['MACOSX_USE_LIBSDL'] = '1' - ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS::X11.include}" + ENV['INCPATH'] = "-I#{MacOS::X11.include}" ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0') - system 'make', 'TARGET=mess', 'SUBTARGET=mess' + system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}", + "TARGET=mess", "SUBTARGET=mess" if MacOS.prefer_64_bit? bin.install 'mess64' => 'mess' diff --git a/Library/Formula/ume.rb b/Library/Formula/ume.rb index f51d5d038..301146662 100644 --- a/Library/Formula/ume.rb +++ b/Library/Formula/ume.rb @@ -2,8 +2,8 @@ require 'formula' class Ume < Formula homepage 'http://mamedev.org/' - url 'svn://dspnet.fr/mame/trunk', :revision => '20928' - version '0.148u1' + url 'svn://dspnet.fr/mame/trunk', :revision => '21963' + version '0.148u2' head 'svn://dspnet.fr/mame/trunk' @@ -12,10 +12,10 @@ class Ume < Formula def install ENV['MACOSX_USE_LIBSDL'] = '1' - ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS::X11.include}" + ENV['INCPATH'] = "-I#{MacOS::X11.include}" ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0') - system 'make', 'TARGET=ume' + system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}", "TARGET=ume" if MacOS.prefer_64_bit? bin.install 'ume64' => 'ume' |
