mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt vte to updater-vte-0.82.0 * updater-vte-0.82.0: Build Run on linux/arm/v7. * updater-vte-0.82.0: Build Run on linux/amd64. * updater-vte-0.82.0: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
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.82.0-#{CREW_ICU_VER}"
|
|
license 'LGPL-2+ and GPL-3+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/vte.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5f897f03c1e388d754c0e74189acc163bbc0e1e0786f3255f37aac28015c7ece',
|
|
armv7l: '5f897f03c1e388d754c0e74189acc163bbc0e1e0786f3255f37aac28015c7ece',
|
|
x86_64: '613017679524ad6f196dd6e87f80d983c3ab292f46a4ed8582aefaca26a81b4a'
|
|
})
|
|
|
|
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 'glib' # R
|
|
depends_on 'glibc' # 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
|