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

13 lines
393 B
Ruby

require 'formula'
class Iat < Formula
homepage 'http://iat.berlios.de/'
url 'https://downloads.sourceforge.net/project/iat.berlios/iat-0.1.7.tar.bz2'
sha1 '006ad57c18c399530ea07847aa0f1c34b650d439'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}",
"--includedir=#{include}/iat"
system 'make install'
end
end