Files
chromebrew/packages/chromebeer.rb
Maximilian Downey Twiss eb14c41653 Remove compatibility from packages with incompatible dependencies (#9458)
* Remove i686 compatibility from packages with dependencies incompatible with i686

* Remove armv7l compatibility from packages with dependencies incompatible with arvm7l

* Abort builds/installs if the package has incompatible dependencies
2024-03-11 13:09:12 -04:00

26 lines
560 B
Ruby

require 'package'
class Chromebeer < Package
description 'An opinionated bundle of "essential" Chromebrew packages.'
homepage 'https://github.com/chromebrew/chromebrew'
version '1.1'
license 'GPL-3+'
compatibility 'x86_64 aarch64 armv7l'
is_fake
depends_on 'ascii'
depends_on 'bleachbit'
depends_on 'clear_cache'
depends_on 'gzsize'
depends_on 'lshw'
depends_on 'mediainfo'
depends_on 'mlocate'
depends_on 'ncdu'
depends_on 'psmisc'
depends_on 'rsync'
depends_on 'sysstat'
depends_on 'tree'
depends_on 'util_linux'
end