mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* 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>
26 lines
865 B
Ruby
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
|