mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
54 lines
1.5 KiB
Ruby
54 lines
1.5 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Vte < Meson
|
|
description 'Virtual Terminal Emulator widget for use with GTK'
|
|
homepage 'https://wiki.gnome.org/Apps/Terminal/VTE'
|
|
version '0.77.91-icu75.1'
|
|
license 'LGPL-2+ and GPL-3+'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://gitlab.gnome.org/GNOME/vte.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd4516db006795e505a81fb52c34803fc6b0eea01a16bbbec03fd0f6546ba604f',
|
|
armv7l: 'd4516db006795e505a81fb52c34803fc6b0eea01a16bbbec03fd0f6546ba604f',
|
|
x86_64: 'f983e3b3731e062c5e0719ae5886cfb3dadb7d45ddea9ea8a22c5f07ce65a7a8'
|
|
})
|
|
|
|
depends_on 'at_spi2_core' # R
|
|
depends_on 'cairo' # R
|
|
depends_on 'fribidi' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdk_pixbuf' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gnutls' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'graphene' # R
|
|
depends_on 'gtk3' # R
|
|
depends_on 'gtk4' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'icu4c' # R
|
|
depends_on 'lz4' # R
|
|
depends_on 'pango' # R
|
|
depends_on 'pcre2' # R
|
|
depends_on 'vulkan_headers' => :build
|
|
depends_on 'vulkan_icd_loader' => :build
|
|
depends_on 'zlib' => :build
|
|
|
|
gnome
|
|
no_lto
|
|
|
|
meson_options '-D_systemd=false \
|
|
-Dfribidi=true \
|
|
-Dgtk3=true \
|
|
-Dgtk4=true \
|
|
-Dgir=false \
|
|
-Dvapi=false'
|
|
|
|
def self.patch
|
|
system "sed -i 's,/usr/bin/python3,#{CREW_PREFIX}/bin/python3,' src/minifont-coverage.py"
|
|
end
|
|
end
|