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

13 lines
392 B
Ruby

require 'formula'
class Iat < Formula
homepage 'http://iat.berlios.de/'
url 'http://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