mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 04:05:12 +08:00
29 lines
764 B
Bash
29 lines
764 B
Bash
# Maintainer: Drake Justice <djustice@chakraos.org>
|
|
|
|
pkgname=xorg-xdriinfo
|
|
pkgver=1.0.4
|
|
pkgrel=1
|
|
pkgdesc="Query configuration information of DRI drivers"
|
|
arch=('x86_64')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libx11' 'libgl')
|
|
makedepends=('xorg-util-macros' 'glproto')
|
|
groups=('xorg-apps' 'xorg')
|
|
source=("http://xorg.freedesktop.org/archive/individual/app/xdriinfo-${pkgver}.tar.bz2")
|
|
sha1sums=('723482b3fc627d7cc6124fec43dd1c21d102daaa')
|
|
|
|
build() {
|
|
cd "${srcdir}/xdriinfo-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/xdriinfo-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|
|
|