homebrew-core/Formula/xz.rb

14 lines
338 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Xz < Formula
url 'http://tukaani.org/xz/xz-5.0.1.tar.bz2'
homepage 'http://tukaani.org/xz/'
md5 'cb6c7a58cec4d663a395c54d186ca0c6'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
2010-10-31 19:01:25 +00:00
"--prefix=#{prefix}"
system "make install"
end
end