19 lines
416 B
Plaintext
19 lines
416 B
Plaintext
|
# Description: Direct3D 12 to Vulkan translation library By WineHQ.
|
||
|
# URL: https://github.com/d3d12/vkd3d
|
||
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
||
|
# Depends on: spirv-headers vulkan-loader xorg-xcb-util-keysyms
|
||
|
|
||
|
name=vkd3d
|
||
|
version=1.1
|
||
|
release=2
|
||
|
source=(https://dl.winehq.org/vkd3d/source/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|