mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
28 lines
870 B
Ruby
28 lines
870 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Adwaita_icon_theme < Meson
|
|
description 'Theme consisting of a set of icons for GTK+'
|
|
homepage 'https://gitlab.gnome.org/GNOME/adwaita-icon-theme'
|
|
version '48.beta'
|
|
license 'LGPL-3 and CC-BY-SA-4.0'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/adwaita-icon-theme.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '7ad5018eaf68dede90ca78ffb5786f485e72972c94747f8707eb8190797889fb',
|
|
armv7l: '7ad5018eaf68dede90ca78ffb5786f485e72972c94747f8707eb8190797889fb',
|
|
x86_64: '5af82be31402e1d9d14492b57a6616dc0f7abbbf028127d52f138cce4aa8d2c6'
|
|
})
|
|
|
|
depends_on 'adwaita_fonts' # L
|
|
depends_on 'gdk_pixbuf' => :build
|
|
depends_on 'gtk3' => :build
|
|
depends_on 'librsvg' => :build
|
|
depends_on 'vala' => :build
|
|
depends_on 'xdg_base'
|
|
|
|
gnome
|
|
end
|