aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mpack.rb
blob: a8b6f426d5a94dc8fcb4278116e7ec90e571b599 (plain)
1
2
3
4
5
6
7
8
9
10
11
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