From 3aeecefcaa5a64589c37fdb177a5fb2b2e64d0c1 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 9 Dec 2014 02:37:47 -0500 Subject: Move ume and mess to homebrew-games --- Library/Formula/mess.rb | 34 ---------------------------------- Library/Formula/ume.rb | 33 --------------------------------- 2 files changed, 67 deletions(-) delete mode 100644 Library/Formula/mess.rb delete mode 100644 Library/Formula/ume.rb (limited to 'Library/Formula') diff --git a/Library/Formula/mess.rb b/Library/Formula/mess.rb deleted file mode 100644 index 6ae60d0f6..000000000 --- a/Library/Formula/mess.rb +++ /dev/null @@ -1,34 +0,0 @@ -require 'formula' - -class Mess < Formula - homepage "http://www.mess.org/" - url "https://github.com/mamedev/mame/archive/mame0156.tar.gz" - sha1 "9cda662385c0b168ca564dab0fb1e839065f6a01" - version "0.156" - - head "https://github.com/mamedev/mame.git" - - depends_on "sdl2" - - # 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' - ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0') - - system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}", - "TARGET=mess", "SUBTARGET=mess" - - if MacOS.prefer_64_bit? - bin.install 'mess64' => 'mess' - else - bin.install 'mess' - end - end -end diff --git a/Library/Formula/ume.rb b/Library/Formula/ume.rb deleted file mode 100644 index c44a6fe47..000000000 --- a/Library/Formula/ume.rb +++ /dev/null @@ -1,33 +0,0 @@ -require 'formula' - -class Ume < Formula - homepage "http://mamedev.org/" - url "https://github.com/mamedev/mame/archive/mame0156.tar.gz" - sha1 "9cda662385c0b168ca564dab0fb1e839065f6a01" - version "0.156" - - head "https://github.com/mamedev/mame.git" - - depends_on "sdl2" - - # 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' - ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0') - - system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}", "TARGET=ume" - - if MacOS.prefer_64_bit? - bin.install 'ume64' => 'ume' - else - bin.install 'ume' - end - end -end -- cgit v1.2.3