homebrew-core/Formula/makepp.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

12 lines
328 B
Ruby

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