diff options
| author | Adam Vandenberg | 2012-06-18 10:29:20 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-06-18 18:47:48 -0700 |
| commit | fd6bf55f98912648fa0deb7cb44348b0c798ec79 (patch) | |
| tree | f49de176dd029d90b8946812f5c84426e1aa0d29 | |
| parent | fee64d388aeb27d96c3392e524d5f6f92e7d3bc0 (diff) | |
| download | homebrew-fd6bf55f98912648fa0deb7cb44348b0c798ec79.tar.bz2 | |
xdelta 3.0.1
| -rw-r--r-- | Library/Formula/xdelta.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/xdelta.rb b/Library/Formula/xdelta.rb index f8f8ebc86..cd1075c6d 100644 --- a/Library/Formula/xdelta.rb +++ b/Library/Formula/xdelta.rb @@ -2,17 +2,19 @@ require 'formula' class Xdelta < Formula homepage 'http://xdelta.org' - url 'http://xdelta.googlecode.com/files/xdelta3.0.0.tar.gz' - sha1 'c9e54fd8dbd9f2e77ead17be9d00e0b8af109024' + 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 "make" - bin.install "xdelta3" - man1.install "xdelta3.1" + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" end end |
