mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt sord to updater-sord-0.16.20 * Update source_url Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add zix, build sord. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix workflow version detection. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * cleanup deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
32 lines
1011 B
Ruby
32 lines
1011 B
Ruby
# Adapted from Arch Linux sord PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/sord/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/meson'
|
|
|
|
class Sord < Meson
|
|
description 'A lightweight C library for storing RDF data in memory'
|
|
homepage 'https://drobilla.net/software/sord/'
|
|
version '0.16.20'
|
|
license 'ISC'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.com/drobilla/sord.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4dceccc727b85b7a0bb7ca396068136191a18127441ed722928e34471c884a1c',
|
|
armv7l: '4dceccc727b85b7a0bb7ca396068136191a18127441ed722928e34471c884a1c',
|
|
i686: 'fd691f1028ba28f0b5a26863ef6e5c0a62d3d50970656d9d0d6adfdee87752e6',
|
|
x86_64: '178d27e5a53980a357cd18b5f9b20c28c31c6504863d2b99baea46bb30c3108d'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'pcre2' # R
|
|
depends_on 'serd' # R
|
|
depends_on 'zix' # R
|
|
|
|
meson_options '-Ddocs=disabled \
|
|
-Dtests=disabled'
|
|
end
|