aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mess.rb34
-rw-r--r--Library/Formula/ume.rb33
2 files changed, 0 insertions, 67 deletions
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