homebrew-core/Formula/swig.rb
Dustin Lang d71ddbb187 Update 2.0.8
Closes Homebrew/homebrew#14748.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-05 21:10:32 -07:00

19 lines
474 B
Ruby

require 'formula'
class Swig < Formula
homepage 'http://www.swig.org/'
url 'http://downloads.sourceforge.net/project/swig/swig/swig-2.0.8/swig-2.0.8.tar.gz'
sha1 '763305da320163903c69c1cdfbf9a942117d9ace'
option :universal
depends_on 'pcre'
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end