blob: 38bc61acca22af74317a2917262dadc39c7351f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Cpmtools < Formula
  url 'http://www.moria.de/~michael/cpmtools/cpmtools-2.13.tar.gz'
  homepage 'http://www.moria.de/~michael/cpmtools/'
  md5 'd0622e33c80d2abb44cbe2e844285ce6'
  def install
    system "./configure", "--prefix=#{prefix}"
    bin.mkpath
    man1.mkpath
    man5.mkpath
    system "make install"
  end
end
  |