mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* vte => 0.80.3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to branch vte. * Update hashes Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix build_updated_packages typo. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updated package files for linux/arm/v7 to branch vte. * Fix build_updated_packages typo. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust sommelier invocation. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@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.80.3-#{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: 'ec03ce00a3a5720e3f90ccc5ac14550935595ef9de5cac1bf11044dc08eaa500',
|
|
armv7l: 'ec03ce00a3a5720e3f90ccc5ac14550935595ef9de5cac1bf11044dc08eaa500',
|
|
x86_64: '63e451a0a0b4609a82612b5077fe039d6ddca715ab11fa1946fc2c4db9744508'
|
|
})
|
|
|
|
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
|