aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorchorn2010-06-22 22:19:46 -0400
committerAdam Vandenberg2010-06-22 22:01:18 -0700
commit6abc8df1c1307fd0a02da331e69c54ffcd96f1ed (patch)
treeea07834e87bd5f3c37983994449010d995f11d54 /Library
parentb2d9cbd41220ceda67b14c590b97330820f317fe (diff)
downloadhomebrew-6abc8df1c1307fd0a02da331e69c54ffcd96f1ed.tar.bz2
Added mpack
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-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