mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt gnome_maps to updater-gnome_maps-49.2 * Update libgweather Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
43 lines
1.3 KiB
Ruby
43 lines
1.3 KiB
Ruby
# Adapted from Arch Linux libshumate PKGBUILD at:
|
|
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=libshumate
|
|
|
|
require 'buildsystems/meson'
|
|
|
|
class Libshumate < Meson
|
|
description 'GTK toolkit providing widgets for embedded maps'
|
|
homepage 'https://wiki.gnome.org/Projects/libshumate'
|
|
version '1.5.1'
|
|
license 'LGPL'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/libshumate.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b17e17501a25ac28e9ea3ea5e32217fef0b7dad990812c5d1ad77b626002649a',
|
|
armv7l: 'b17e17501a25ac28e9ea3ea5e32217fef0b7dad990812c5d1ad77b626002649a',
|
|
x86_64: '683416d6e00e091a51b59afdaea1ad8c35bd2324c950d9fbca05be4fdb150f11'
|
|
})
|
|
|
|
depends_on 'cairo' # R
|
|
depends_on 'gcc_lib' => :build
|
|
depends_on 'gdk_pixbuf' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gperf' => :build
|
|
depends_on 'graphene' # R
|
|
depends_on 'gtk4' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'json_glib' # R
|
|
depends_on 'libsoup' # R
|
|
depends_on 'pango' # R
|
|
depends_on 'protobuf_c' # R
|
|
depends_on 'sqlite' # R
|
|
depends_on 'vala' => :build
|
|
|
|
gnome
|
|
|
|
meson_options '-Dsysprof=disabled -Dgtk_doc=false'
|
|
end
|