compat-32/vkd3d-32/Pkgfile

25 lines
558 B
Plaintext
Raw Normal View History

2019-01-26 08:07:07 +01:00
# Description: Direct3D 12 to Vulkan translation library By WineHQ.
# URL: https://github.com/d3d12/vkd3d
# Maintainer: Danny Rawlins, crux at romster dot me
2020-11-01 06:57:14 +01:00
# Depends on: spirv-tools-32 vulkan-loader-32 xorg-xcb-util-keysyms-32 vkd3d
2019-01-26 08:07:07 +01:00
name=vkd3d-32
2023-05-22 22:33:47 +02:00
version=1.7.1
2020-11-01 06:57:14 +01:00
release=1
source=(https://dl.winehq.org/vkd3d/source/${name%-*}-$version.tar.xz)
2019-01-26 08:07:07 +01:00
build() {
cd ${name%-*}-$version
./configure \
--prefix=/usr \
2020-11-01 06:57:14 +01:00
--libdir=/usr/lib32 \
--with-spirv-tools
2019-01-26 08:07:07 +01:00
make
make DESTDIR=$PKG install
2020-11-01 06:57:14 +01:00
mv $PKG/usr/bin/vkd3d-compiler{,-32}
2019-01-26 08:07:07 +01:00
rm -r $PKG/usr/include
}