mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt gnome_console to updater-gnome_console-49.1 * updater-gnome_console-49.1: Package File Update Run on linux/amd64 container. * updater-gnome_console-49.1: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
43 lines
1.3 KiB
Ruby
43 lines
1.3 KiB
Ruby
# Adapted from Arch Linux gnome-console PKGBUILD at:
|
|
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=gnome-console
|
|
|
|
require 'buildsystems/meson'
|
|
|
|
class Gnome_console < Meson
|
|
description 'A simple user-friendly terminal emulator for the GNOME desktop'
|
|
homepage 'https://gitlab.gnome.org/GNOME/console'
|
|
version '49.1'
|
|
license 'GPL3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/console.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f56540d1fbbefd9f235ca86078d0240d9a5a831ec3ec438f57e44b55e90e3b52',
|
|
armv7l: 'f56540d1fbbefd9f235ca86078d0240d9a5a831ec3ec438f57e44b55e90e3b52',
|
|
x86_64: '4a981963bac36a6b21d989c2097228e5cb9ff4cb0281b53e4dadef937a2466fb'
|
|
})
|
|
|
|
depends_on 'desktop_file_utils' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdk_pixbuf' => :build
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'graphene' => :build
|
|
depends_on 'gtk4' # R
|
|
depends_on 'harfbuzz' => :build
|
|
depends_on 'libadwaita' # R
|
|
depends_on 'libgtop' # R
|
|
depends_on 'libhandy' => :build
|
|
depends_on 'nautilus' => :build
|
|
depends_on 'pango' # R
|
|
depends_on 'pcre2' => :build
|
|
depends_on 'sassc' => :build
|
|
depends_on 'vte' # R
|
|
depends_on 'vulkan_headers' => :build
|
|
depends_on 'vulkan_icd_loader' # L
|
|
|
|
gnome
|
|
end
|