diff options
| author | Mark A. Matienzo | 2011-06-09 22:51:40 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-06-10 09:37:48 -0700 |
| commit | a1df6353d3ab744a9fc7496ea4afc82aaed4fb80 (patch) | |
| tree | d5a453803ccf695852dc7cdbf62502544b847b26 | |
| parent | 819b26f72245f3a551022721314807c028c2b92a (diff) | |
| download | homebrew-a1df6353d3ab744a9fc7496ea4afc82aaed4fb80.tar.bz2 | |
cpmtools 2.13
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -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 |
