blob: 0cff0057de45f13db22180d021b5395d02f58c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Xz < Formula
homepage 'http://tukaani.org/xz/'
url 'http://tukaani.org/xz/xz-5.0.4.tar.bz2'
sha256 '5cd9b060d3a1ad396b3be52c9b9311046a1c369e6062aea752658c435629ce92'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|