aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/mpack.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mpack.rb b/Library/Formula/mpack.rb
new file mode 100644
index 000000000..a8b6f426d
--- /dev/null
+++ b/Library/Formula/mpack.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Mpack <Formula
+ url 'http://ftp.andrew.cmu.edu/pub/mpack/mpack-1.6.tar.gz'
+ homepage 'http://ftp.andrew.cmu.edu/pub/mpack/'
+ md5 'a70fa5afa76539a9afb70b9d81568fe8'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end