aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpmtools.rb
blob: 2280d942c3b88e84432619671b16c746a75d1657 (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
32
33
34
35
36
37
38
39
40
41
42
require 'formula'

class Cpmtools < Formula
  homepage 'http://www.moria.de/~michael/cpmtools/'
  url 'http://www.moria.de/~michael/cpmtools/files/cpmtools-2.20.tar.gz'
  sha1 '5a2703265d903fe615ec3c71e3ce4ff8d58637af'

  bottle do
    sha1 "a437721156fa15a612e823e4f1ee0fdbfe2d0ed7" => :yosemite
    sha1 "43ea7f0a371628133d4c46e249c32f0a619ad45f" => :mavericks
    sha1 "537d26d243827c8d1506305fce70e9eab7604eaa" => :mountain_lion
  end

  def install
    system "./configure", "--prefix=#{prefix}"

    bin.mkpath
    man1.mkpath
    man5.mkpath

    system "make install"
  end

  test do
    # make a disk image
    image = testpath/"disk.cpm"
    system "#{bin}/mkfs.cpm -f ibm-3740 #{image}"

    # copy a file into the disk image
    src = testpath/"foo"
    src.write "a" * 128
    system "#{bin}/cpmcp -f ibm-3740 #{image} #{src} 0:foo"

    # check for the file in the cp/m directory
    assert shell_output("#{bin}/cpmls -f ibm-3740 #{image}").include?("foo")

    # copy the file back out of the image
    dest = testpath/"bar"
    system "#{bin}/cpmcp -f ibm-3740 #{image} 0:foo #{dest}"
    assert_equal src.read, dest.read
  end
end