blob: ac59fcf646a4b47b330a1325e3dd16ec7c62ab83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Xz <Formula
url 'http://tukaani.org/xz/xz-4.999.9beta.tar.bz2'
homepage 'http://tukaani.org/xz/'
md5 'cc4044fcc073b8bcf3164d1d0df82161'
version '4.999.9beta' # *shrug*
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"
system "make install"
end
end
|