2011-06-10 02:51:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cpmtools < Formula
|
|
|
|
homepage 'http://www.moria.de/~michael/cpmtools/'
|
2013-01-27 02:26:17 +00:00
|
|
|
url 'http://www.moria.de/~michael/cpmtools/cpmtools-2.13.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'c7efb662a467b0341dc516dee1c36cd284740f8a'
|
2011-06-10 02:51:40 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
|
|
|
|
bin.mkpath
|
|
|
|
man1.mkpath
|
|
|
|
man5.mkpath
|
|
|
|
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|