diff options
| author | chorn | 2010-06-22 22:19:46 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-22 22:01:18 -0700 |
| commit | 6abc8df1c1307fd0a02da331e69c54ffcd96f1ed (patch) | |
| tree | ea07834e87bd5f3c37983994449010d995f11d54 /Library/Formula | |
| parent | b2d9cbd41220ceda67b14c590b97330820f317fe (diff) | |
| download | homebrew-6abc8df1c1307fd0a02da331e69c54ffcd96f1ed.tar.bz2 | |
Added mpack
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mpack.rb | 12 |
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 |
