36 lines
929 B
Ruby
36 lines
929 B
Ruby
require 'formula'
|
|
|
|
class Cpmtools < Formula
|
|
homepage 'http://www.moria.de/~michael/cpmtools/'
|
|
url 'http://www.moria.de/~michael/cpmtools/files/cpmtools-2.19.tar.gz'
|
|
sha1 '7c66bd04ecc05c05e99232a55a427f7b29a2f4cf'
|
|
|
|
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
|