mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* modernize package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-hicolor_icon_theme-0.18: Package File Update Run on linux/386 container. * updater-hicolor_icon_theme-0.18: Package File Update Run on linux/amd64 container. * updater-hicolor_icon_theme-0.18: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
20 lines
770 B
Ruby
20 lines
770 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Hicolor_icon_theme < Meson
|
|
description 'Icon-theme contains the standard also references the default icon theme called hicolor.'
|
|
homepage 'https://www.freedesktop.org/wiki/Software/icon-theme/'
|
|
version '0.18'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/xdg/default-icon-theme'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ff7b95d8f773d8624295f65b8a1a79404ec2e2ae6d62f22ff019695ea6d02b1c',
|
|
armv7l: 'ff7b95d8f773d8624295f65b8a1a79404ec2e2ae6d62f22ff019695ea6d02b1c',
|
|
i686: 'a2e59ec6e33b38dc66a1f565dc9dcc7360bbcdfa3fe8ed4a4500871c64c49a05',
|
|
x86_64: 'c8432fdc7aa1157df9959a928bf8c7a52df4e24db4effe7c855650b101c658cd'
|
|
})
|
|
end
|