mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
34 lines
1.0 KiB
Ruby
34 lines
1.0 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Geocode_glib < Meson
|
|
description 'Helper library for geocoding services'
|
|
homepage 'https://gitlab.gnome.org/GNOME/geocode-glib'
|
|
version '3.26.4'
|
|
license 'LGPL-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/GNOME/geocode-glib/archive/3.26.4.tar.gz'
|
|
source_sha256 'cd4464f74add58584f04e6a7f16347f07caf271509e0b7ef067a4170b74518c9'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b4c19b4b56d86ca0ce4d5a98f0b87f09ba883e5363e271277c0419a72ece6fa3',
|
|
armv7l: 'b4c19b4b56d86ca0ce4d5a98f0b87f09ba883e5363e271277c0419a72ece6fa3',
|
|
x86_64: '7149daebea7923591edbabf59b14e328421880aaac8c8147ba4ac0c0838b5d19'
|
|
})
|
|
|
|
depends_on 'json_glib'
|
|
depends_on 'libsoup'
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gtk_doc' => :build
|
|
depends_on 'py3_pygments' => :build
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libsoup2' # R
|
|
|
|
gnome
|
|
|
|
def self.patch
|
|
system "sed -i 's/gnome/Adwaita/' icons/meson.build"
|
|
end
|
|
end
|