mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Gnome_text_editor < Meson
|
|
description 'GNOME Text Editor'
|
|
homepage 'https://gitlab.gnome.org/GNOME/gnome-text-editor'
|
|
version '50.0'
|
|
license 'GPL-3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/gnome-text-editor.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '052cdb67487e3c3a9ac8d4f48f5ad2fdd6b4c73b424ac8b21c0b83e5e4098d8b',
|
|
armv7l: '052cdb67487e3c3a9ac8d4f48f5ad2fdd6b4c73b424ac8b21c0b83e5e4098d8b',
|
|
x86_64: 'aa742ff8c9c4886f889714ce9c50d5831204accc3e06aa4eefd4aba294929277'
|
|
})
|
|
|
|
depends_on 'desktop_file_utils' => :build
|
|
depends_on 'editorconfig_core_c' => :executable
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' => :executable
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gspell' => :build
|
|
depends_on 'gtk4' => :executable
|
|
depends_on 'gtk_doc' => :build
|
|
depends_on 'gtksourceview_5' => :executable
|
|
depends_on 'ibus' => :build
|
|
depends_on 'libadwaita' => :executable
|
|
depends_on 'libpeas' => :build
|
|
depends_on 'libspelling' => :executable
|
|
depends_on 'pango' => :executable
|
|
depends_on 'pcre' => :build
|
|
depends_on 'py3_pygobject' => :build
|
|
depends_on 'sassc' => :build
|
|
depends_on 'vala' => :build
|
|
depends_on 'yelp_tools' => :build
|
|
|
|
gnome
|
|
end
|