mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
15 lines
269 B
Ruby
15 lines
269 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/liba52.rb")
|
|
|
|
class A52 < Package
|
|
description Liba52.description
|
|
homepage Liba52.homepage
|
|
version Liba52.version
|
|
license Liba52.license
|
|
compatibility Liba52.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'liba52'
|
|
end
|