homebrew-core/Formula/makepp.rb
DusK 9b3c3bdd40 makepp 2.0
Closes Homebrew/homebrew#15983.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 17:48:38 -08:00

12 lines
325 B
Ruby

require 'formula'
class Makepp < Formula
homepage 'http://makepp.sourceforge.net/'
url 'http://sourceforge.net/projects/makepp/files/2.0/makepp-2.0.tgz'
sha1 '23995b1fc17255be6a42e5778f6027441dc44661'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end