52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
|
# Template file for 'vulkan-loader'
|
||
|
pkgname=vulkan-loader
|
||
|
_pkgname=Vulkan-LoaderAndValidationLayers
|
||
|
version=1.0.65.1
|
||
|
revision=1
|
||
|
build_style=cmake
|
||
|
configure_args="-DBUILD_TESTS=Off"
|
||
|
wrksrc=${_pkgname}-sdk-${version}
|
||
|
hostmakedepends="git python3 bison pkg-config"
|
||
|
makedepends="libxcb-devel libxkbcommon-devel libwayland-egl wayland-devel
|
||
|
libXrandr-devel"
|
||
|
short_desc="Vulkan Installable Client Driver (ICD) loader"
|
||
|
maintainer="Arvin Ignaci <arvin.ignaci@gmail.com>"
|
||
|
license="Apache-2.0"
|
||
|
homepage="https://www.khronos.org/vulkan/"
|
||
|
distfiles="https://github.com/KhronosGroup/${_pkgname}/archive/sdk-${version}.tar.gz"
|
||
|
checksum=aafb3ae34a653c737e49e48742a9dba6327a83f7f2620434a77184a0b87ffa22
|
||
|
|
||
|
nocross="https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/issues/1962"
|
||
|
nopie=yes
|
||
|
|
||
|
pre_configure() {
|
||
|
./update_external_sources.sh
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
for file in build/loader/libvulkan.*; do
|
||
|
vinstall ${file} 755 /usr/lib
|
||
|
done
|
||
|
|
||
|
vbin build/demos/vulkaninfo
|
||
|
|
||
|
vinstall include/vulkan/vk_icd.h 644 /usr/include/vulkan
|
||
|
vlicense LICENSE.txt
|
||
|
}
|
||
|
|
||
|
vulkan-validation-layers_package() {
|
||
|
short_desc="Vulkan validation layers"
|
||
|
depends="${sourcepkg}>=${version}_${revision}"
|
||
|
pkg_install() {
|
||
|
cd build
|
||
|
|
||
|
for file in layers/*.so; do
|
||
|
vinstall ${file} 755 /usr/lib
|
||
|
done
|
||
|
|
||
|
for file in layers/*.json; do
|
||
|
vinstall ${file} 644 /etc/vulkan/explicit_layer.d
|
||
|
done
|
||
|
}
|
||
|
}
|