mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
48 lines
1.4 KiB
Ruby
48 lines
1.4 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Tinysparql < Meson
|
|
description 'Low-footprint RDF triple store library with SPARQL 1.1 interface'
|
|
homepage 'https://gitlab.gnome.org/GNOME/tinysparql'
|
|
version '3.7.3-icu75.1'
|
|
license 'GPLv2+'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
min_glibc '2.37'
|
|
source_url 'https://gitlab.gnome.org/GNOME/tinysparql.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '42c62d693cc7d5b435d05a5d61b39339d5a1dfec645e031dac8b0d0358b73a4c',
|
|
armv7l: '42c62d693cc7d5b435d05a5d61b39339d5a1dfec645e031dac8b0d0358b73a4c',
|
|
x86_64: '8ca12cb7bd12ce282e2cf036b7cd15011663886a47d0b24b4d1af5209cea3926'
|
|
})
|
|
|
|
depends_on 'asciidoc' => :build
|
|
depends_on 'avahi' # R
|
|
depends_on 'docbook_xml' => :build
|
|
depends_on 'dbus' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gtk_doc' => :build
|
|
depends_on 'icu4c' # R
|
|
depends_on 'json_glib' # R
|
|
depends_on 'libsoup2' # R
|
|
depends_on 'libsoup' # R
|
|
depends_on 'libstemmer' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'py3_pygobject' => :build
|
|
depends_on 'sqlite' # R
|
|
depends_on 'util_linux' => :build
|
|
depends_on 'vala' => :build
|
|
|
|
gnome
|
|
|
|
meson_options "-Ddbus_services_dir=#{CREW_PREFIX}/share/dbus-1/services/ \
|
|
-Ddocs=false \
|
|
-Dman=false \
|
|
-Dsystemd_user_services=false"
|
|
end
|