From bf9dfeea5044d2178aedd578a72cdadfe944b573 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 17 Feb 2013 19:34:48 -0600 Subject: Move mame and rom-tools to homebrew-games --- Library/Formula/mame.rb | 26 -------------------------- Library/Formula/rom-tools.rb | 29 ----------------------------- 2 files changed, 55 deletions(-) delete mode 100644 Library/Formula/mame.rb delete mode 100644 Library/Formula/rom-tools.rb (limited to 'Library') 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 -- cgit v1.2.3