30 lines
696 B
Plaintext
30 lines
696 B
Plaintext
# Description: Vulkan Header files and API registry
|
|
# URL: https://www.khronos.org/vulkan/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: cmake ninja
|
|
|
|
name=vulkan-headers
|
|
version=1.1.126.0
|
|
release=1
|
|
source=(
|
|
#https://github.com/KhronosGroup/Vulkan-Headers/archive/v$version/ulkan-Headers-v$version.tar.gz
|
|
https://github.com/KhronosGroup/Vulkan-Headers/archive/sdk-$version/Vulkan-Headers-sdk-$version.tar.gz
|
|
)
|
|
|
|
build() {
|
|
#cd Vulkan-Headers-$version
|
|
cd Vulkan-Headers-sdk-$version
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-GNinja
|
|
|
|
ninja -j ${JOBS:-1}
|
|
DESTDIR=$PKG ninja install
|
|
}
|