🔒 Repository is read-only – file editing is disabled.

recipes/gui/xorg-xf86-video-amdgpu/PAGBUILD.yaml main

37 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637
pkgname: 'xorg-xf86-video-amdgpu'
pkgver: '25.0.0'
pkgrel: '1'
pkgdesc: 'Xorg AMDGPU video driver.'
url: 'https://xorg.freedesktop.org/'
arch: x86_64
license:
- 'MIT'

depends: []
makedepends:
- meson
- mesa
- 'xorg-server'

source:
- 'https://xorg.freedesktop.org/releases/individual/driver/xf86-video-amdgpu-${pkgver}.tar.xz'

sha256sums:
- SKIP

build: |
  cd xf86-video-amdgpu-*/

  meson setup \
    --prefix=/usr \
    --buildtype=plain \
    --libexecdir=lib \
    --sbindir=bin \
    -D b_pie=true \
    . builddir

  meson compile -C builddir

package: |
  cd xf86-video-amdgpu-*/
  DESTDIR="${PKGDIR}" meson install -C builddir