blob: e1bf326bd61cb28082041abcd2ea87466ce853fe (
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/'
sha1 'c7efb662a467b0341dc516dee1c36cd284740f8a'
def install
system "./configure", "--prefix=#{prefix}"
bin.mkpath
man1.mkpath
man5.mkpath
system "make install"
end
end
|