blob: 75d82f564c755f0e72725fc37503467179a7a5d5 (
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 Expat < Formula
homepage 'http://expat.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/expat/expat/2.1.0/expat-2.1.0.tar.gz'
sha1 'b08197d146930a5543a7b99e871cba3da614f6f0'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
def caveats
"Note that OS X has Expat 1.5 installed in /usr already."
end
end
|