blob: cd1075c6d16ebc2c6e37873f0f743bf7c5e25dc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Xdelta < Formula
homepage 'http://xdelta.org'
url 'http://xdelta.googlecode.com/files/xdelta3-3.0.1.tar.gz'
sha1 '7eae42bd16f4c9c33be85c2faf420c36541bfa61'
# Fixed upstream in SVN revision 350
# Can be removed in 3.0.2
fails_with :clang do
build 318
cause "Undefined symbols for architecture x86_64: \"_xd3_source_eof\""
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|