mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt vulkan_headers to updater-vulkan_headers-1.4.325 * updater-vulkan_headers-1.4.325: Build Run on linux/arm/v7. * updater-vulkan_headers-1.4.325: Build Run on linux/amd64. * updater-vulkan_headers-1.4.325: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.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.4.325'
|
|
license 'Apache-2.0'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/KhronosGroup/Vulkan-Headers.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'fb39dfbac8e29598bf0adf90b336a06351f48810dd505a3806d0c856ab5d7596',
|
|
armv7l: 'fb39dfbac8e29598bf0adf90b336a06351f48810dd505a3806d0c856ab5d7596',
|
|
x86_64: 'afbdfbcd384d90302f5abb2d9a335f82a5958a5058eb1c358e160ea571bd9c6a'
|
|
})
|
|
end
|