blob: 8eea61d8e92f70737fefeddc9bf48aedd5b394aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
require 'formula'
class Swig < Formula
  homepage 'http://www.swig.org/'
  url 'http://sourceforge.net/projects/swig/files/swig/swig-2.0.10/swig-2.0.10.tar.gz'
  sha1 'ad6f95ce9b9da4a8f5b80ac1848d26c76f518d84'
  option :universal
  depends_on 'pcre'
  depends_on :python  # assure swig find the "right" python
  depends_on :python3 => :optional
  def install
    ENV.universal_binary if build.universal?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end
  |