Add formula for xz.
XZ Utils is free general-purpose data compression software with high compression ratio.
This commit is contained in:
parent
fac8a63810
commit
778f4c7e4f
1 changed files with 13 additions and 0 deletions
13
Formula/xz.rb
Normal file
13
Formula/xz.rb
Normal 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
|
Loading…
Reference in a new issue