aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adamem.rb
blob: 006d5ad78e7171588d3890181e1f1f071ce217e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'formula'

class Adamem < Formula
  head 'git://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