homebrew-core/Formula/makepp.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

12 lines
329 B
Ruby

require 'formula'
class Makepp < Formula
homepage 'http://makepp.sourceforge.net/'
url 'https://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