mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Add unbuilt gnome_mines to updater-gnome_mines-49.0.1 * Update gnome_mines to use gtk4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix builds and rebuild librsvg. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Refactor libgnome_games_support. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove libgnome_games_support2 filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
27 lines
865 B
Ruby
27 lines
865 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Libgnome_games_support1 < Meson
|
|
description 'libgnome-games-support is a small library intended for internal use by GNOME Games.'
|
|
homepage 'https://gitlab.gnome.org/GNOME/libgnome-games-support'
|
|
version '1.8.2' # Needed for gnome_klotski build.
|
|
license 'LGPL-3+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/libgnome-games-support.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6f83e25e2fd800d309f96006eeb9c96f76ac11a6ab3370193427da0b7a8ba0b8',
|
|
armv7l: '6f83e25e2fd800d309f96006eeb9c96f76ac11a6ab3370193427da0b7a8ba0b8',
|
|
x86_64: 'a332d79955f7dd3e8804337410daea63b39cc41bd42b529acb61559cc4bed27b'
|
|
})
|
|
|
|
depends_on 'clutter'
|
|
depends_on 'gtk3'
|
|
depends_on 'libgee'
|
|
depends_on 'vala' => :build
|
|
|
|
gnome
|
|
ignore_updater
|
|
end
|