mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
# Adapted from Arch Linux lilv PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/lilv/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/meson'
|
|
|
|
class Lilv < Meson
|
|
description 'A C library interface to the LV2 plug-in standard'
|
|
homepage 'https://drobilla.net/software/lilv/'
|
|
@_ver = '0.24.20'
|
|
version "#{@_ver}-py3.12"
|
|
license 'isc'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/lv2/lilv.git'
|
|
git_hashtag "v#{@_ver}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ecbb826b1648be16f71b5c8a453c8f07a7cef24d3e4f9b529344ded90c8955b1',
|
|
armv7l: 'ecbb826b1648be16f71b5c8a453c8f07a7cef24d3e4f9b529344ded90c8955b1',
|
|
i686: 'dbd331cef323b3942d518413bf18a00f23995f906a945e179964c00928db10ae',
|
|
x86_64: 'a5526bf19b7dad498788d3b90906619634cd2bbd0ff22e779bd790ff6a5c1c06'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libsndfile' # R
|
|
depends_on 'lv2' # L
|
|
depends_on 'python3' => :build
|
|
depends_on 'serd' # R
|
|
depends_on 'sord' # R
|
|
depends_on 'sratom' # R
|
|
|
|
meson_options '-Ddocs=disabled \
|
|
-Dtests=disabled'
|
|
end
|