mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* replace lzma with current xz-utils * add po4a build dep to xzutils * Add xzutils, pixz * is_fake doesn't need source_url * add pixz tpxz format support to crew * Add xzutils to pixz deps * Add pixz if not installed. * change pixz logic * pixz changes * xzutils is a runtime dep for pixz * grammar fix * remove pixz warning
15 lines
277 B
Ruby
15 lines
277 B
Ruby
require 'package'
|
|
|
|
class Lzma < Package
|
|
description 'LZMA Utils are legacy data compression software with high compression ratio.'
|
|
homepage 'https://tukaani.org/lzma/'
|
|
version '4.98'
|
|
license 'public-domain'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'xzutils'
|
|
|
|
end
|