mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Update wayland_protocols Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to mpv * Add built packages for linux/amd64 to mpv * Add built packages for linux/arm/v7 to mpv * mpv => 0.40.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update ffmpeg Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update libplacebo Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update libplacebo Signed-off-by: Satadru Pramanik <satadru@gmail.com> * upload libplacebo binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update ffmpeg, mpv Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
24 lines
783 B
Ruby
24 lines
783 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Wayland_protocols < Meson
|
|
description 'Wayland is a protocol for a compositor to talk to its clients.'
|
|
homepage 'https://wayland.freedesktop.org/'
|
|
version '1.42'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/wayland/wayland-protocols.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3433445fdbd0c9f02042499e32c81938212bb5eee99bfc528d9324940c9693c1',
|
|
armv7l: '3433445fdbd0c9f02042499e32c81938212bb5eee99bfc528d9324940c9693c1',
|
|
i686: '3a49071ea3ef60da7d32b21e76c0294015343c6f949565d5a557b7197d63fcdb',
|
|
x86_64: '59f739923fedf7316e57c62f4aa4d9e6976da3d141dce79c4d57c0fddbee8730'
|
|
})
|
|
|
|
depends_on 'wayland' # L
|
|
|
|
meson_options '-Dtests=false'
|
|
end
|