diff options
| author | Kyungdahm Yun | 2014-12-07 01:34:58 -0800 |
|---|---|---|
| committer | Jack Nagel | 2014-12-09 02:36:36 -0500 |
| commit | b7bb0ddc082371d1892f0f4f41ec4bb8ea6c8548 (patch) | |
| tree | 6c6b74c1520e2bea33197597c39cf22d7b7d2c34 /Library | |
| parent | 12c6c86282b73191edfd06c7a3dd481891c850a5 (diff) | |
| download | homebrew-b7bb0ddc082371d1892f0f4f41ec4bb8ea6c8548.tar.bz2 | |
mess 0.156
* Switch to SDL2 with hotfix
Closes #34751.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mess.rb | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Library/Formula/mess.rb b/Library/Formula/mess.rb index 2496ebc3f..6ae60d0f6 100644 --- a/Library/Formula/mess.rb +++ b/Library/Formula/mess.rb @@ -2,20 +2,21 @@ require 'formula' class Mess < Formula homepage "http://www.mess.org/" - url "https://github.com/mamedev/mame/archive/mame0155.tar.gz" - sha1 "0e56d53dd6dd916b3c29387112a7042befc501bd" - version "0.155" + url "https://github.com/mamedev/mame/archive/mame0156.tar.gz" + sha1 "9cda662385c0b168ca564dab0fb1e839065f6a01" + version "0.156" head "https://github.com/mamedev/mame.git" - bottle do - cellar :any - sha1 "e5a44194f5e7498ef816530ec8196c1f96448f96" => :yosemite - sha1 "6003ef6faaced6b86a8f63ab7a2ec33885c2fa75" => :mavericks - sha1 "51c9c19ba6dfc316986406018da7a4f86c46dd1d" => :mountain_lion - end + depends_on "sdl2" - depends_on 'sdl' + # Fix for Cocoa framework linking and sdl-config path + # It's been upstreamed, so remove from the next release + # https://github.com/mamedev/mame/pull/60 + patch do + url "https://github.com/mbcoguno/mame/commit/5d8dc09b12ea7d5576ef92e3e14a1db3654ff810.diff" + sha1 "76c0f11f225968a10c0f024c55607e9f09634825" + end def install ENV['MACOSX_USE_LIBSDL'] = '1' |
