Add formula for xz.

XZ Utils is free general-purpose data compression software with high compression ratio.
This commit is contained in:
Adam Vandenberg 2009-11-24 17:34:14 -08:00 committed by Max Howell
parent fac8a63810
commit 778f4c7e4f

13
Formula/xz.rb Normal file
View file

@ -0,0 +1,13 @@
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
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end