homebrew-core/Formula/tclap.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

15 lines
404 B
Ruby

require 'formula'
class Tclap < Formula
homepage 'http://tclap.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/tclap/tclap-1.2.1.tar.gz'
sha1 '4f124216dd6e6936f5af6372d921a6c51563f8fd'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
# Installer scripts have problems with parallel make
ENV.deparallelize
system "make install"
end
end