aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/adamem.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/Library/Formula/adamem.rb b/Library/Formula/adamem.rb
deleted file mode 100644
index 1166cf388..000000000
--- a/Library/Formula/adamem.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require 'formula'
-
-class Adamem < Formula
- head 'https://github.com/adamv/adamem-osx.git', :branch => 'osx-brew'
- homepage 'http://www.komkon.org/~dekogel/adamem.html'
-
- def startup_script app
- # The executables expect to find system roms in the same directory.
- # We create shim sripts in bin/ that invoke the emulators w/ the full
- # paths to the system roms.
- return <<-END
-#!/bin/bash
-#{libexec}/#{app} -os7 "#{libexec}/OS7.rom" -eos "#{libexec}/EOS.rom" -wp "#{libexec}/WP.rom" $*
-END
- end
-
- def install
- Dir.chdir 'src' do
- system "make -f Makefile.osx dist"
- end
-
- libexec.install Dir["dist/*"]
-
- (bin+'adamem').write startup_script('adamem')
- (bin+'cvem').write startup_script('cvem')
- end
-
- def caveats
- "Note that AdamEm is an X11 app, and does not support sound."
- end
-end