aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-12-09 02:37:47 -0500
committerJack Nagel2014-12-09 02:37:47 -0500
commit3aeecefcaa5a64589c37fdb177a5fb2b2e64d0c1 (patch)
treebf37302775a62052ac07ef50f43f893233eef0cb
parentb7bb0ddc082371d1892f0f4f41ec4bb8ea6c8548 (diff)
downloadhomebrew-3aeecefcaa5a64589c37fdb177a5fb2b2e64d0c1.tar.bz2
Move ume and mess to homebrew-games
-rw-r--r--Library/Formula/mess.rb34
-rw-r--r--Library/Formula/ume.rb33
-rw-r--r--Library/Homebrew/tap_migrations.rb4
3 files changed, 3 insertions, 68 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
diff --git a/Library/Homebrew/tap_migrations.rb b/Library/Homebrew/tap_migrations.rb
index 1a8e43b32..4e7147cac 100644
--- a/Library/Homebrew/tap_migrations.rb
+++ b/Library/Homebrew/tap_migrations.rb
@@ -45,6 +45,7 @@ TAP_MIGRATIONS = {
"librets" => "homebrew/boneyard",
"libspotify" => "homebrew/binary",
"lmutil" => "homebrew/binary",
+ "mess" => "homebrew/games",
"metalua" => "homebrew/boneyard",
"mlkit" => "homebrew/boneyard",
"mlton" => "homebrew/boneyard",
@@ -61,8 +62,8 @@ TAP_MIGRATIONS = {
"pocl" => "homebrew/science",
"qfits" => "homebrew/boneyard",
"qrupdate" => "homebrew/science",
- "shark" => "homebrew/boneyard",
"salt" => "homebrew/science",
+ "shark" => "homebrew/boneyard",
"slicot" => "homebrew/science",
"solfege" => "homebrew/boneyard",
"sundials" => "homebrew/science",
@@ -70,6 +71,7 @@ TAP_MIGRATIONS = {
"tetgen" => "homebrew/science",
"texmacs" => "homebrew/boneyard",
"tmap" => "homebrew/boneyard",
+ "ume" => "homebrew/games",
"urweb" => "homebrew/boneyard",
"ushare" => "homebrew/boneyard",
"wkhtmltopdf" => "homebrew/boneyard",