Date: Friday, January 25, 2019 @ 17:20:48 Author: felixonmars Revision: 427889
addpkg: vkd3d 1.1-1 Added: vkd3d/ vkd3d/repos/ vkd3d/trunk/ vkd3d/trunk/PKGBUILD ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Added: vkd3d/trunk/PKGBUILD =================================================================== --- vkd3d/trunk/PKGBUILD (rev 0) +++ vkd3d/trunk/PKGBUILD 2019-01-25 17:20:48 UTC (rev 427889) @@ -0,0 +1,29 @@ +# Maintainer: Felix Yan <[email protected]> +# Contributor: Bruce Zhang + +pkgname=vkd3d +pkgver=1.1 +pkgrel=1 +pkgdesc='Direct3D 12 to Vulkan translation library By WineHQ' +arch=('x86_64') +url='https://github.com/d3d12/vkd3d' +license=('LGPL') +depends=('vulkan-icd-loader') +makedepends=('spirv-headers' 'vulkan-headers' 'xcb-util-keysyms') +source=("https://dl.winehq.org/vkd3d/source/vkd3d-$pkgver.tar.xz") +sha1sums=('00e784c2112acec0b8ef80ea547ed09c136335e8') + +prepare() { + cd vkd3d-$pkgver + ./configure --prefix=/usr +} + +build() { + cd vkd3d-$pkgver + make +} + +package() { + cd vkd3d-$pkgver + make DESTDIR="$pkgdir" install +}
