2009-11-25 01:34:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2013-07-24 13:55:43 +00:00
|
|
|
# Upstream project has requested we use a mirror as the main URL
|
|
|
|
# https://github.com/mxcl/homebrew/pull/21419
|
2011-03-10 05:11:03 +00:00
|
|
|
class Xz < Formula
|
2009-11-25 01:34:14 +00:00
|
|
|
homepage 'http://tukaani.org/xz/'
|
2013-07-24 13:55:43 +00:00
|
|
|
url 'http://fossies.org/linux/misc/xz-5.0.5.tar.gz'
|
|
|
|
mirror 'http://tukaani.org/xz/xz-5.0.5.tar.gz'
|
2013-07-07 00:12:30 +00:00
|
|
|
sha256 '5dcffe6a3726d23d1711a65288de2e215b4960da5092248ce63c99d50093b93a'
|
2009-11-25 01:34:14 +00:00
|
|
|
|
2012-08-10 04:39:38 +00:00
|
|
|
option :universal
|
2011-12-13 22:02:46 +00:00
|
|
|
|
2009-11-25 01:34:14 +00:00
|
|
|
def install
|
2012-08-10 04:39:38 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2010-10-31 19:01:25 +00:00
|
|
|
"--prefix=#{prefix}"
|
2009-11-25 01:34:14 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|