diff options
| author | mbcoguno | 2013-03-20 23:19:32 +0800 |
|---|---|---|
| committer | Jack Nagel | 2013-04-08 14:48:03 -0500 |
| commit | 7e2f3ba6acfcbb42b727114f682685343c7a63a8 (patch) | |
| tree | 4501b05d0877fd321fdc0d674e4fdc448de07a15 | |
| parent | 158ab975c24d78286d702466aeb9d655e0358661 (diff) | |
| download | homebrew-7e2f3ba6acfcbb42b727114f682685343c7a63a8.tar.bz2 | |
mess & ume 0.148u2
* Update ume and its family to 0.148u2.
* Let homebrew decide which compiler compiling ume and its family. Note
that ume's LD is abnormal.
* Remove redefined header path.
Closes #18613.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -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' |
