Skip to content

Instantly share code, notes, and snippets.

@zman0900
Created March 2, 2014 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zman0900/9304936 to your computer and use it in GitHub Desktop.
Save zman0900/9304936 to your computer and use it in GitHub Desktop.
xf86-video-ati PKGBUILD
# Maintainer: Riccardo Berto <riccardobrt@gmail.com>
# Previous Contributor: vbmithr
# Contributor: Flamelab <panosfilip at gmail dot com>
# Contributor: Dan Ziemba <zman0900@gmail.com>
pkgname=xf86-video-ati-git
_realpkgname=xf86-video-ati
pkgver=20121110
pkgrel=1
pkgdesc="X.org ati video driver. Git version"
arch=('i686' 'x86_64')
url="http://xorg.freedesktop.org/"
provides=("${_realpkgname}")
depends=('libdrm>=2.4.41' 'systemd' 'ati-dri' 'glamor-egl')
makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15')
conflicts=('xorg-server<1.15.0' 'X-ABI-VIDEODRV_VERSION<15' 'X-ABI-VIDEODRV_VERSION>=16' 'xf86-video-ati')
license=('custom')
source=('xf86-video-ati::git://anongit.freedesktop.org/xorg/driver/xf86-video-ati#branch=master')
md5sums=('SKIP')
build() {
cd "${srcdir}/xf86-video-ati"
./autogen.sh --prefix=/usr \
--enable-glamor
make
}
package() {
cd "${srcdir}/xf86-video-ati"
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}
@JCSiv
Copy link

JCSiv commented Mar 2, 2014

Thanks for the PKGBUILD, I don't have the time to maintain this package any more and no longer use it. I'm going to disown this package now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment