aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpmtools.rb
blob: 808700f4e90b3488df3d5cb8b7cc1f0426de6a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Cpmtools < Formula
  homepage 'http://www.moria.de/~michael/cpmtools/'
  url 'http://www.moria.de/~michael/cpmtools/cpmtools-2.13.tar.gz'
  sha1 'c7efb662a467b0341dc516dee1c36cd284740f8a'

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

    bin.mkpath
    man1.mkpath
    man5.mkpath

    system "make install"
  end
end