mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gtk4 => 4.19.2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Refactor getrealdeps.rb and update gtk4 deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gtk4: Build Run on linux/386. * Disable broken build of gtk4 vulkan on armv7l. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gtk4: Build Run on linux/arm/v7. * gtk4: Package File Update Run on linux/386 container. * Adjust vulkan deps for gtk4. 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: chromebrew-actions[bot] <chromebrew-actions[bot]@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.45'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/wayland/wayland-protocols.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'fee2ab27728f5b81089c5e3ad70ee4b86e8cf5d64fc947b1c6b6234a695a0960',
|
|
armv7l: 'fee2ab27728f5b81089c5e3ad70ee4b86e8cf5d64fc947b1c6b6234a695a0960',
|
|
i686: '222135852c4a2145f3bce64ec6c16c3b75406d5d6e67be0b3815dd33329ba865',
|
|
x86_64: '16f6900f0dd3aa9e38c577ad221e3d58c7713a111cfcd1348c3466b7d5822104'
|
|
})
|
|
|
|
depends_on 'wayland' # L
|
|
|
|
meson_options '-Dtests=false'
|
|
end
|