Files
chromebrew/packages/pakitheme.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

18 lines
529 B
Ruby

require 'package'
class Pakitheme < Package
description 'Automatically install your host GTK+ theme as a Flatpak'
homepage 'https://github.com/refi64/pakitheme'
version '1.0'
license 'MPL-2.0'
compatibility 'x86_64 aarch64 armv7l'
source_url 'https://github.com/saltedcoffii/pakitheme/archive/1.0.tar.gz'
source_sha256 '32446ecc73ae95d699d6e14e5fa3dc3a8b3a9cfae02457b2b7f38fdd7d7524f3'
depends_on 'flatpak'
def self.install
system "install -Dm755 ./pakitheme #{CREW_DEST_PREFIX}/bin/pakitheme"
end
end