aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-02-17 19:34:48 -0600
committerJack Nagel2013-02-17 19:34:48 -0600
commitbf9dfeea5044d2178aedd578a72cdadfe944b573 (patch)
treed93a74657ae0b63cfb2ca77e4dc84cb0a22462bd /Library
parent3bc5af62ba4f0683644d31b5852d7003151976ce (diff)
downloadhomebrew-bf9dfeea5044d2178aedd578a72cdadfe944b573.tar.bz2
Move mame and rom-tools to homebrew-games
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mame.rb26
-rw-r--r--Library/Formula/rom-tools.rb29
2 files changed, 0 insertions, 55 deletions
diff --git a/Library/Formula/mame.rb b/Library/Formula/mame.rb
deleted file mode 100644
index d4ed84e25..000000000
--- a/Library/Formula/mame.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-require 'formula'
-
-class Mame < Formula
- homepage 'http://mamedev.org/'
- url 'svn://dspnet.fr/mame/trunk', :revision => 17961
- version '0.147'
-
- head 'svn://dspnet.fr/mame/trunk'
-
- depends_on :x11
- depends_on 'sdl'
-
- def install
- ENV['MACOSX_USE_LIBSDL'] = '1'
- ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS::X11.include}"
- ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
-
- system 'make', 'TARGET=mame', 'SUBTARGET=mame'
-
- if MacOS.prefer_64_bit?
- bin.install 'mame64' => 'mame'
- else
- bin.install 'mame'
- end
- end
-end
diff --git a/Library/Formula/rom-tools.rb b/Library/Formula/rom-tools.rb
deleted file mode 100644
index 08c91bff6..000000000
--- a/Library/Formula/rom-tools.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require 'formula'
-
-class RomTools < Formula
- homepage 'http://www.mess.org/'
- url 'svn://dspnet.fr/mame/trunk', :revision => 17961
- version '0.147'
-
- head 'svn://dspnet.fr/mame/trunk'
-
- depends_on :x11
- depends_on 'sdl'
-
- def install
- ENV['MACOSX_USE_LIBSDL'] = '1'
- ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS::X11.include}"
- ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
-
- system 'make romcmp'
- system 'make jedutil'
- system 'make chdman'
- system 'make tools'
-
- bin.install %W[
- castool chdman floptool imgtool jedutil ldresample ldverify regreg
- romcmp src2htm srcclean testkeys unidasm
- ]
- bin.install 'split' => 'rom-split'
- end
-end