aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mpack.rb
blob: fd399caf05f0fb22af5527280077de67831eab11 (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