volk-32: initial commit, version 1.3.275.0

This commit is contained in:
Tim Biermann 2024-01-21 10:50:46 +01:00
parent 7311ceeb3a
commit 49ed3596a1
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 39 additions and 0 deletions

0
volk-32/.32bit Normal file
View File

9
volk-32/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
drwxr-xr-x root/root usr/lib32/cmake/
drwxr-xr-x root/root usr/lib32/cmake/volk/
-rw-r--r-- root/root usr/lib32/cmake/volk/volkConfig.cmake
-rw-r--r-- root/root usr/lib32/cmake/volk/volkConfigVersion.cmake
-rw-r--r-- root/root usr/lib32/cmake/volk/volkTargets-release.cmake
-rw-r--r-- root/root usr/lib32/cmake/volk/volkTargets.cmake
-rw-r--r-- root/root usr/lib32/libvolk.a

5
volk-32/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXez6mlHTh2pMZiuoaiPcEJhiLi0TGPMfafVzaebtDSPpH4G9QwU7q23O6lLFO6na+He2HztYzyrklQTJ+hXebQg=
SHA256 (Pkgfile) = 28174437044378d9cfae76dcb20d4a8b2793a7db5b4b5f2f0ee88a0558f5d3c6
SHA256 (.footprint) = a6ebf7fe189ff89384bc229830ca21ebf457dfccea2239f82089dd3aea9fad40
SHA256 (volk-1.3.275.0.tar.gz) = b68d24e139190e49e5eafd72894f6e85c80472b8745bddc6ef91d6bf339df813

25
volk-32/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Meta loader for Vulkan API
# URL: https://github.com/zeux/volk
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: vulkan-loader-32
name=volk-32
version=1.3.275.0
_version=vulkan-sdk-$version
release=1
source=(https://github.com/zeux/volk/archive/$_version/volk-$version.tar.gz)
build() {
cmake -S volk-$_version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib32 \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D VOLK_INSTALL=True \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/include
}