mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
18 lines
529 B
Ruby
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 'aarch64 armv7l x86_64'
|
|
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
|