mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
15 lines
369 B
Ruby
15 lines
369 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/xzutils.rb")
|
|
|
|
class Lzma < Package
|
|
description 'LZMA Utils are legacy data compression software with high compression ratio. Bundled with xzutils.'
|
|
homepage 'https://tukaani.org/lzma/'
|
|
version Xzutils.version
|
|
license Xzutils.license
|
|
compatibility Xzutils.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'xzutils'
|
|
end
|