diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-27 21:51:43 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-04 09:00:50 -0300 |
commit | 6be22ac3ebf95b8387668ef9913aeba51138f5ab (patch) | |
tree | 1ab9b8beeeeb83cdc783383335d26913407968ce /community/wine | |
parent | f98521cdb58a443fcaac3664dd198e9ed6e0aaf7 (diff) | |
download | aports-6be22ac3ebf95b8387668ef9913aeba51138f5ab.tar.bz2 aports-6be22ac3ebf95b8387668ef9913aeba51138f5ab.tar.xz |
community/wine: enable support for vulkan and vkd3d
Diffstat (limited to 'community/wine')
-rw-r--r-- | community/wine/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/community/wine/APKBUILD b/community/wine/APKBUILD index e665901ad0..b5e79037ec 100644 --- a/community/wine/APKBUILD +++ b/community/wine/APKBUILD @@ -7,7 +7,7 @@ pkgname=wine pkgver=4.0.1 _pkgver=${pkgver/_/-} -pkgrel=0 +pkgrel=1 pkgdesc="A compatibility layer for running Windows programs" url="https://www.winehq.org" arch="x86 x86_64" @@ -20,6 +20,7 @@ makedepends="alsa-lib-dev autoconf automake bison cups-dev dbus-dev flex-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxi-dev libxinerama-dev libxml2-dev libxrandr-dev libxrender-dev libxslt-dev libxxf86dga-dev mesa-dev ncurses-dev openldap-dev openssl-dev tiff-dev udisks2-dev v4l-utils-dev zlib-dev + vulkan-loader-dev vkd3d-dev " checkdepends="xvfb-run" source="https://dl.winehq.org/$pkgname/source/${pkgver%.[1-9]}/$pkgname-$_pkgver.tar.xz @@ -27,7 +28,6 @@ source="https://dl.winehq.org/$pkgname/source/${pkgver%.[1-9]}/$pkgname-$_pkgver wine-dlclose-bug41703.patch winhlp32-flex.patch " -builddir="$srcdir/$pkgname-$_pkgver" prepare() { default_prepare @@ -47,6 +47,8 @@ build() { --localstatedir=/var \ --with-dbus \ --with-x \ + --with-vkd3d \ + --with-vulkan \ $_win64 make } |