aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/makepp.rb
blob: b5d92b3ef1d6e51032d1645153eb4a8db8bb395c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Makepp < Formula
  homepage 'http://makepp.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/makepp/2.0/makepp-2.0.tgz'
  sha1 '23995b1fc17255be6a42e5778f6027441dc44661'

  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end