opt/spirv-headers/Pkgfile

28 lines
789 B
Plaintext
Raw Normal View History

2019-11-23 08:16:07 +01:00
# Description: Header files from the SPIR-V registry
2019-05-14 15:59:14 +02:00
# URL: https://www.khronos.org/registry/spir-v/
# Maintainer: Danny Rawlins, crux at romster dot me
2019-08-30 16:42:24 +02:00
# Depends on: cmake ninja
2019-05-14 15:59:14 +02:00
name=spirv-headers
2019-11-23 08:16:07 +01:00
version=1.5.1
commit=2ad0492fb00919d99500f1da74abf5ad3c870e4e
release=2
2019-08-30 11:06:31 +02:00
source=(
#https://github.com/KhronosGroup/SPIRV-Headers/archive/$version/SPIRV-Headers-$version.tar.gz
2019-11-23 08:16:07 +01:00
https://github.com/KhronosGroup/SPIRV-Headers/archive/$commit.tar.gz#/$name-$commit.tar.gz
2019-08-30 11:06:31 +02:00
)
2019-05-14 15:59:14 +02:00
build() {
2019-08-30 11:06:31 +02:00
# cd SPIRV-Headers-$version
# cd SPIRV-Headers-$commit
cmake -SSPIRV-Headers-$commit -Bbuild -GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
2019-08-30 11:06:31 +02:00
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DSPIRV_HEADERS_SKIP_EXAMPLES=ON
cmake --build build
DESTDIR=$PKG cmake --build build --target install
2019-05-14 15:59:14 +02:00
}