blob: 53e7ab0cf96385de3485d1ce3a48b90637aa741f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: AdriĆ Cereto i MassaguĆ© <ssorgatem@gmail.com>
# Co-Maintainer: Jonas Van der Aa <ketsukonn@gmail.com>
pkgbase=dxvk-bin
pkgname=('dxvk-bin')
pkgver=1.5.1
pkgrel=2
pkgdesc="A Vulkan-based compatibility layer for Direct3D 9/10/11 which allows running 3D applications on Linux using Wine (Windows DLL binary files)"
url="https://github.com/doitsujin/dxvk"
license=('zlib/libpng')
arch=('x86_64')
provides=("dxvk" "d9vk" "dxvk=$pkgver")
conflicts=("dxvk" "d9vk")
options=(!strip)
source=("https://github.com/doitsujin/dxvk/releases/download/v$pkgver/dxvk-$pkgver.tar.gz"
)
sha256sums=('474ce9995edd47a3bd347a8f3263f35cf8df2676f5b16668bf38efa298d75c01')
package_dxvk-bin () {
depends=('vulkan-icd-loader' 'wine>=3.10' 'lib32-vulkan-icd-loader')
install -D "dxvk-$pkgver"/x32/* -t "$pkgdir/usr/share/dxvk/x32"
install -D "dxvk-$pkgver"/x64/* -t "$pkgdir/usr/share/dxvk/x64"
install "dxvk-$pkgver"/setup_dxvk.sh -t "$pkgdir/usr/share/dxvk/"
install -d "$pkgdir/usr/bin"
ln -s /usr/share/dxvk/setup_dxvk.sh "$pkgdir/usr/bin/setup_dxvk"
}
|