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