2021-05-05 16:20:25 +02:00
|
|
|
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
|
|
|
_pkgname=gpu-amdgpu
|
|
|
|
_reponame=arch
|
|
|
|
pkgname="de-p1st-$_pkgname"
|
2022-05-15 13:43:10 +02:00
|
|
|
pkgver=0.0.4
|
2021-05-05 16:20:25 +02:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="AMDGPU"
|
|
|
|
arch=('any')
|
|
|
|
url="https://codeberg.org/privacy1st/${_reponame}"
|
|
|
|
license=('MIT')
|
|
|
|
|
2022-05-15 13:43:10 +02:00
|
|
|
depends=()
|
|
|
|
# DRI driver for 3D acceleration.
|
|
|
|
depends+=(mesa)
|
|
|
|
# DDX driver (which provides 2D acceleration in Xorg).
|
2021-05-05 17:08:14 +02:00
|
|
|
depends+=(xf86-video-amdgpu)
|
2022-05-15 13:43:10 +02:00
|
|
|
# Vulkan support.
|
2021-05-05 17:08:14 +02:00
|
|
|
depends+=(vulkan-radeon)
|
2022-05-15 13:43:10 +02:00
|
|
|
# HW-vide-acceleration: VA-API.
|
2021-05-05 17:08:51 +02:00
|
|
|
depends+=(libva-mesa-driver)
|
2022-05-15 13:43:10 +02:00
|
|
|
# HW-vide-acceleration: VDPAU.
|
2021-05-05 17:08:14 +02:00
|
|
|
depends+=(mesa-vdpau)
|
2021-05-24 16:11:06 +02:00
|
|
|
# holo
|
2022-04-15 15:43:21 +02:00
|
|
|
depends+=('holo' 'git' 'base') # holo depends on base (otherwise "holo apply" may fail on initial system installation) and git (git-diff)
|
2021-05-05 16:20:25 +02:00
|
|
|
|
2022-05-15 13:43:10 +02:00
|
|
|
optdepends=()
|
|
|
|
optdepends+=('lib32-mesa: 32bit app support')
|
|
|
|
optdepends+=('lib32-vulkan-radeon: 32bit app support')
|
|
|
|
optdepends+=('lib32-libva-mesa-driver: 32bit app support')
|
|
|
|
optdepends+=('lib32-mesa-vdpau: 32bit app support')
|
|
|
|
|
2021-05-24 16:11:06 +02:00
|
|
|
makedepends=('git')
|
2021-05-05 16:20:25 +02:00
|
|
|
provides=('de-p1st-gpu') # implicitly provides $pkgname
|
2021-05-24 16:11:06 +02:00
|
|
|
install='.install'
|
|
|
|
source=("git+${url}.git")
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${_reponame}/pkg/${pkgname}"
|
|
|
|
|
2021-07-05 11:36:19 +02:00
|
|
|
# 10-$pkgname as this shall be applied before de-p1st-mkinitcpio
|
|
|
|
install -Dm0544 mkinitcpio.conf.holoscript "$pkgdir"/usr/share/holo/files/10-"$pkgname"/etc/mkinitcpio.conf.holoscript
|
2022-05-15 13:43:10 +02:00
|
|
|
}
|