17 lines
434 B
Plaintext
17 lines
434 B
Plaintext
# Description: Direct3D 12 to Vulkan translation library By WineHQ
|
|
# URL: https://github.com/d3d12/vkd3d
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: spirv-tools vulkan-loader xorg-xcb-util-keysyms
|
|
|
|
name=vkd3d
|
|
version=1.10
|
|
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
|
|
}
|