aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-10-31 12:01:25 -0700
committerAdam Vandenberg2010-10-31 12:01:34 -0700
commita1a5ee64bdd6d51d3a21db5174e904d1cf57c615 (patch)
treecec5abb894168741a9dd68b4be7b0f52678e8f05 /Library/Formula
parentdad433c3b1cfce1a9962e1b5b80dc30c5d52f981 (diff)
downloadhomebrew-a1a5ee64bdd6d51d3a21db5174e904d1cf57c615.tar.bz2
xz 5.0.0
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xz.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/Library/Formula/xz.rb b/Library/Formula/xz.rb
index ac59fcf64..bda927b55 100644
--- a/Library/Formula/xz.rb
+++ b/Library/Formula/xz.rb
@@ -1,16 +1,13 @@
require 'formula'
class Xz <Formula
- url 'http://tukaani.org/xz/xz-4.999.9beta.tar.bz2'
+ url 'http://tukaani.org/xz/xz-5.0.0.tar.bz2'
homepage 'http://tukaani.org/xz/'
- md5 'cc4044fcc073b8bcf3164d1d0df82161'
- version '4.999.9beta' # *shrug*
+ md5 '0652c09fdbb93ae2ce78c1368ffda612'
def install
- # Disable the assembly CRC checks they use x86 rather than x86-64 asm and fail to build for x86-64.
system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--disable-assembler"
+ "--prefix=#{prefix}"
system "make install"
end
end