summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorckonte2019-05-11 09:06:45 +0200
committerckonte2019-05-11 09:06:45 +0200
commit31c19da7d3e76d00933b806c6c1384d836ea0619 (patch)
tree2691073d8f98f307ed8bfea1afb7e1bd65b9431c
downloadaur-31c19da7d3e76d00933b806c6c1384d836ea0619.tar.gz
Initial commit
-rw-r--r--.SRCINFO17
-rw-r--r--PKGBUILD19
2 files changed, 36 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..f4b00212ab0e
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = amdvlk-deb
+ pkgdesc = AMD Open Source Driver for Vulkan (Stable DEB Release)
+ pkgver = 2019.Q2.2
+ pkgrel = 1
+ url = https://github.com/GPUOpen-Drivers/AMDVLK
+ arch = x86_64
+ license = MIT
+ depends = vulkan-icd-loader
+ provides = amdvlk
+ provides = vulkan-driver
+ conflicts = amdvlk-git
+ conflicts = amdvlk
+ source = https://github.com/GPUOpen-Drivers/AMDVLK/releases/download/v-2019.Q2.2/amdvlk_2019.Q2.2_amd64.deb
+ sha256sums = SKIP
+
+pkgname = amdvlk-deb
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..27231dfcde70
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Claudio Contino <ckonte at outlook dot it>
+pkgname=amdvlk-deb
+pkgver=2019.Q2.2
+pkgrel=1
+pkgdesc="AMD Open Source Driver for Vulkan (Stable DEB Release)"
+arch=("x86_64")
+url="https://github.com/GPUOpen-Drivers/AMDVLK"
+license=("MIT")
+depends=("vulkan-icd-loader")
+conflicts=("amdvlk-git" "amdvlk")
+provides=("amdvlk" "vulkan-driver")
+source=(
+"https://github.com/GPUOpen-Drivers/AMDVLK/releases/download/v-${pkgver}/amdvlk_${pkgver}_amd64.deb"
+)
+sha256sums=('SKIP')
+
+package() {
+ tar -xJC "$pkgdir" -f data.tar.xz
+}