mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* wayland_protocols => 1.46 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflows to cleanup container as background process. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflows to use background cleanup. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * wayland: Package File Update Run on linux/386 container. * wayland: Package File Update Run on linux/amd64 container. * wayland: Package File Update Run on linux/arm/v7 container. * lint 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>
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.46'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/wayland/wayland-protocols.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4ae3d7455fd139d98caa53a0e6a3eb87b80083daff3a2eb418e1530329daa82c',
|
|
armv7l: '4ae3d7455fd139d98caa53a0e6a3eb87b80083daff3a2eb418e1530329daa82c',
|
|
i686: '737f1d56ab72fee69daa356d2cd872a09e05b68310165340380a99f924d8ee3b',
|
|
x86_64: '1f79f3c8e195ade95784e5b9d15bf63e27e6b39c210cde1a808025926c2938ad'
|
|
})
|
|
|
|
depends_on 'wayland' # L
|
|
|
|
meson_options '-Dtests=false'
|
|
end
|