homebrew-core/Formula/swig.rb

22 lines
571 B
Ruby
Raw Normal View History

require 'formula'
class Swig < Formula
homepage 'http://www.swig.org/'
url 'http://downloads.sourceforge.net/project/swig/swig/swig-2.0.10/swig-2.0.10.tar.gz'
sha1 'ad6f95ce9b9da4a8f5b80ac1848d26c76f518d84'
2012-08-10 04:48:41 +00:00
option :universal
2012-08-10 04:48:41 +00:00
depends_on 'pcre'
depends_on :python # assure swig find the "right" python
depends_on :python3 => :optional
def install
2012-08-10 04:48:41 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end