summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bafb002afc212ce7e154277336b65fc130496884 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: sparzz
pkgname=vulkan-tools-git
pkgver=1.2.140.2020.05.25
pkgrel=1
epoch=
pkgdesc="vulkan tools build directly from KhronosGroup github. This build provide the most recent vulkan-tools package"
arch=(x86_64)
url="https://github.com/KhronosGroup/Vulkan-Tools.git"
license=('Apache')
groups=()
depends=()
makedepends=("cmake"
            "git")
checkdepends=()
optdepends=()
provides=(vulkan-tools-git)
conflicts=(vulkan-tools)
replaces=(vulkan-tools)
backup=()
options=()
install=
changelog=
source=("Vulkan-Tools::git+https://github.com/KhronosGroup/Vulkan-Tools.git")
noextract=()
md5sums=("SKIP")
validpgpkeys=()






package() {
	cmake Vulkan-Tools
	make DESTDIR="$pkgdir" install
}