diff options
| author | Adam Vandenberg | 2009-11-24 17:34:14 -0800 |
|---|---|---|
| committer | Max Howell | 2009-12-12 16:24:17 +0000 |
| commit | 286a446540b90157ba62bc369e0a6655cb507995 (patch) | |
| tree | 1f7e592ddc98b901b9f9c742540d9dc31f5ae4a1 /Library/Formula/xz.rb | |
| parent | bfe9239c9a1457aea5820891da921fe4612d9e20 (diff) | |
| download | homebrew-286a446540b90157ba62bc369e0a6655cb507995.tar.bz2 | |
Add formula for xz.
XZ Utils is free general-purpose data compression software with high compression ratio.
Diffstat (limited to 'Library/Formula/xz.rb')
| -rw-r--r-- | Library/Formula/xz.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/xz.rb b/Library/Formula/xz.rb new file mode 100644 index 000000000..c0654b9b5 --- /dev/null +++ b/Library/Formula/xz.rb @@ -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 |
