diff options
| -rw-r--r-- | Library/Formula/cpmtools.rb | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/cpmtools.rb b/Library/Formula/cpmtools.rb new file mode 100644 index 000000000..38bc61acc --- /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  | 
