blob: 34443dd19a456002e729fb44ace2c02b29c255a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Swig < Formula
homepage 'http://www.swig.org/'
url 'http://sourceforge.net/projects/swig/files/swig/swig-2.0.9/swig-2.0.9.tar.gz'
sha1 '7984bf1043f522e88ea51d4bd21c97d3c68342be'
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
|