19 lines
462 B
Plaintext
19 lines
462 B
Plaintext
# Description: Direct3D 12 to Vulkan translation library By WineHQ
|
|
# URL: https://wiki.winehq.org/Vkd3d
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: spirv-tools vulkan-loader xorg-xcb-util-keysyms
|
|
|
|
name=vkd3d
|
|
version=1.11
|
|
release=1
|
|
source=(https://dl.winehq.org/vkd3d/source/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --with-spirv-tools
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|
|
# vim: set ts=4 et:
|