summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrià Cereto-Massagué2018-10-16 12:50:11 +0200
committerAdrià Cereto-Massagué2018-10-16 12:50:11 +0200
commit9be83717ccd7597cd709c7d587a84bcf11ce4e68 (patch)
tree0754a8fd89ed2e5e2256a70c64bbb5b25537bf04
parent505a7ef83b1031a9ec71ec9eecd198896bc6030b (diff)
downloadaur-9be83717ccd7597cd709c7d587a84bcf11ce4e68.tar.gz
fix double slashes
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 49d4310600a8..387ce1040018 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = dxvk-wine-git
pkgdesc = A Vulkan-based compatibility layer for Direct3D 10/11 which allows running 3D applications on Linux using Wine. Winelib version
- pkgver = 0.81_18_g8172d34
- pkgrel = 2
+ pkgver = 0.90_4_ge0e945f
+ pkgrel = 1
url = https://github.com/doitsujin/dxvk
arch = x86_64
license = zlib/libpng
diff --git a/PKGBUILD b/PKGBUILD
index b07407546109..3ef5829ec4a6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,8 @@
pkgbase=dxvk-wine-git
pkgname=('dxvk-wine64-git' 'dxvk-wine32-git')
-pkgver=0.81_18_g8172d34
-pkgrel=2
+pkgver=0.90_4_ge0e945f
+pkgrel=1
pkgdesc="A Vulkan-based compatibility layer for Direct3D 10/11 which allows running 3D applications on Linux using Wine. Winelib version"
arch=('x86_64')
url="https://github.com/doitsujin/dxvk"
@@ -48,9 +48,9 @@ build() {
_package_dxvk() {
if [ "$1" = "32" ]; then
- _destdir="/usr/lib32/dxvk/"
+ _destdir="/usr/lib32/dxvk"
else
- _destdir="/usr/lib/dxvk/"
+ _destdir="/usr/lib/dxvk"
fi
mkdir -p "$pkgdir/$_destdir"
cp -v build$1/*/* "$pkgdir/$_destdir"