mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -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>
25 lines
861 B
Ruby
25 lines
861 B
Ruby
# Adapted from Arch Linux zix PKGBUILD at:
|
|
# https://gitlab.archlinux.org/archlinux/packaging/packages/zix/-/blob/main/PKGBUILD?ref_type=heads
|
|
|
|
require 'buildsystems/meson'
|
|
|
|
class Zix < Meson
|
|
description 'A lightweight C99 portability and data structure library'
|
|
homepage 'https://gitlab.com/drobilla/zix'
|
|
version '0.8.0'
|
|
license '0BSD OR ISC'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.com/drobilla/zix.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '53fcab8ea102cde913a61df8fde58198f3d69095a8f70689c5f91d9a1f9b3d14',
|
|
armv7l: '53fcab8ea102cde913a61df8fde58198f3d69095a8f70689c5f91d9a1f9b3d14',
|
|
i686: '4cece6cdbf6d5b79a1892fbc379c6110aa0a9ab252b5358d31a5d1e8740507d5',
|
|
x86_64: '8ab8cedd9c499bc5cbe9a1845050857d8485ef3bb44dade7b3b106fccbaabb4a'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
end
|