1
0
forked from ports/opt

vulkan-loader: contrib -> opt

This commit is contained in:
Danny Rawlins 2019-04-28 13:06:20 +10:00
parent 061291c0fe
commit 5d36696bc0
3 changed files with 37 additions and 0 deletions

7
vulkan-loader/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libvulkan.so -> libvulkan.so.1
lrwxrwxrwx root/root usr/lib/libvulkan.so.1 -> libvulkan.so.1.1.101
-rwxr-xr-x root/root usr/lib/libvulkan.so.1.1.101
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/vulkan.pc

5
vulkan-loader/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/fJxRvstRVSMXW+U/PDXAD91Gbiun4b5q5rkWu8iSzfphET5gwc1CWQ57nh7W9BkEz0KrqyEFzNBjc7ClZA7WAs=
SHA256 (Pkgfile) = 2a2dcb02c0b569db545c2c546a7f8b91835d8391afcd3bbeabd58137f0798ee2
SHA256 (.footprint) = 5a72ebd072f602561a60e9633a845e834513322668e0898faebe53f1132a97e6
SHA256 (Vulkan-Loader-sdk-1.1.101.0.tar.gz) = ddb1b877c7fca8a9732e851d004062b54ff420cf5395dfcbf5e8e8390bca4b27

25
vulkan-loader/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Vulkan loader
# URL: https://www.khronos.org/vulkan/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: vulkan-headers python3 xorg-libxrandr
name=vulkan-loader
version=1.1.101.0
release=1
source=(https://github.com/KhronosGroup/Vulkan-Loader/archive/sdk-$version/Vulkan-Loader-sdk-$version.tar.gz)
build() {
cd Vulkan-Loader-sdk-$version
mkdir build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_WSI_WAYLAND_SUPPORT=OFF
make
make DESTDIR=$PKG install
}