mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
41 lines
1.4 KiB
Ruby
41 lines
1.4 KiB
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Vulkan_icd_loader < CMake
|
|
description 'Vulkan Installable Client Driver ICD Loader'
|
|
homepage 'https://github.com/KhronosGroup/Vulkan-Loader'
|
|
version '1.4.303'
|
|
license 'Apache-2.0'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/KhronosGroup/Vulkan-Loader.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd4ebef246f9c8593a7c100aecaa7388a8185d8a5d620d0ad52032375efcd48dc',
|
|
armv7l: 'd4ebef246f9c8593a7c100aecaa7388a8185d8a5d620d0ad52032375efcd48dc',
|
|
x86_64: 'bca394b967a38b0cffdc4e3f73cde6fa357ae8e94b5be3524bb953858bc3f3f1'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxcb' # R
|
|
depends_on 'libxrandr' => :build
|
|
depends_on 'vulkan_headers' => :build
|
|
depends_on 'wayland' => :build
|
|
|
|
def self.patch
|
|
# https://github.com/KhronosGroup/Vulkan-Loader/pull/1586
|
|
system "sed -i 's/armhf/armhf|armv7l|armv8l/g' loader/CMakeLists.txt"
|
|
end
|
|
|
|
cmake_options "-DUPDATE_DEPS=On \
|
|
-DVULKAN_HEADERS_INSTALL_DIR=#{CREW_PREFIX} \
|
|
-DCMAKE_INSTALL_SYSCONFDIR=#{CREW_PREFIX}/etc \
|
|
-DCMAKE_INSTALL_DATADIR=#{CREW_PREFIX}/share \
|
|
-DCMAKE_SKIP_RPATH=True \
|
|
-DBUILD_TESTS=Off \
|
|
-DBUILD_WSI_XCB_SUPPORT=On \
|
|
-DBUILD_WSI_XLIB_SUPPORT=On \
|
|
-DBUILD_WSI_WAYLAND_SUPPORT=On"
|
|
end
|