blob: 9f67364ae3784ba9b63ad8db47495a6379743d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
MAKEDEPS="make"
DEPS="xorg-server mesa"
DESC="X.org amdgpu video driver"
PKG_VER=21.0.0
SOURCE=https://www.x.org/pub/individual/driver/xf86-video-amdgpu-$PKG_VER.tar.bz2
build () {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|