Files
chromebrew/packages/libfyaml.rb
chromebrew-actions[bot] 8f152c24a9 Add unbuilt gnome_online_accounts to updater-gnome_online_accounts-3.56.1 — libfyaml → 0.9,gcr_4 → 4.4.0.1,gnome_online_accounts → 3.56.1 (#13423)
* Add unbuilt gnome_online_accounts to updater-gnome_online_accounts-3.56.1

* Add binaries and libfyaml.

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>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2025-11-12 01:08:24 +00:00

26 lines
865 B
Ruby

# Adapted from Arch Linux libfyaml PKGBUILD at:
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=libfyaml
require 'buildsystems/autotools'
class Libfyaml < Autotools
description 'Fully feature complete YAML parser and emitter'
homepage 'https://pantoniou.github.io/libfyaml'
version '0.9'
license 'MIT'
compatibility 'all'
source_url 'https://github.com/pantoniou/libfyaml.git'
git_hashtag "v#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'c0a723ec9e431c1306cada7f697f5d14aacf0ced632cf854c022423959841268',
armv7l: 'c0a723ec9e431c1306cada7f697f5d14aacf0ced632cf854c022423959841268',
i686: '682868064b070a2329479341601e2457976cfa692414f2d1d5cc8c760816a9a3',
x86_64: 'd1ed053fa4bacb5f022bc61cfe5d63bbd9b3250483fb0a76410623f533def077'
})
depends_on 'glibc' # R
depends_on 'jq' => :build
end