From a1df6353d3ab744a9fc7496ea4afc82aaed4fb80 Mon Sep 17 00:00:00 2001 From: "Mark A. Matienzo" Date: Thu, 9 Jun 2011 22:51:40 -0400 Subject: [PATCH] cpmtools 2.13 Signed-off-by: Adam Vandenberg --- Library/Formula/cpmtools.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Library/Formula/cpmtools.rb diff --git a/Library/Formula/cpmtools.rb b/Library/Formula/cpmtools.rb new file mode 100644 index 000000000000..38bc61acca22 --- /dev/null +++ b/Library/Formula/cpmtools.rb @@ -0,0 +1,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