mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Update vulkan and ninja. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Xorg_server => 21.1.14 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Xwayland => 24.1.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
19 lines
633 B
Ruby
19 lines
633 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Vulkan_headers < CMake
|
|
description 'Vulkan header files'
|
|
homepage 'https://github.com/KhronosGroup/Vulkan-Headers'
|
|
version '1.3.300'
|
|
license 'Apache-2.0'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://github.com/KhronosGroup/Vulkan-Headers.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3a4d72912cb12489e72300acaca66bb45c65247a5fc17b548f4b70eb9bd20bd8',
|
|
armv7l: '3a4d72912cb12489e72300acaca66bb45c65247a5fc17b548f4b70eb9bd20bd8',
|
|
x86_64: '9fff78c1efbfe537ce3d0eb437d902bb09a986ab5fc1c035c4edab07c7aec78a'
|
|
})
|
|
end
|