17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
# Description: Query configuration information of DRI drivers
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: mesa
|
|
|
|
name=xorg-xdriinfo
|
|
version=1.0.7
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/archive/individual/app/xdriinfo-$version.tar.xz)
|
|
|
|
build() {
|
|
cd xdriinfo-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|