Advertisement
Guest User

xf86-video-intel-xwayland-git

a guest
Sep 10th, 2013
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.85 KB | None | 0 0
  1. # Maintainer: Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
  2.  
  3. pkgname=xf86-video-intel-xwayland-git
  4. pkgver=2.21.15.1.gd9769c1
  5. pkgrel=1
  6. pkgdesc="X.org Intel video drivers for XWayland"
  7. arch=('i686' 'x86_64')
  8. url="http://wayland.freedesktop.org/"
  9. license=('MIT')
  10. depends=('weston' 'wayland' 'xwayland-git')
  11. makedepends=('randrproto' 'inputproto' 'dri2proto' 'xf86dgaproto' 'libxxf86dga')
  12. conflicts=('xf86-video-intel')
  13. provides=('xf86-video-intel')
  14. source=(git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#branch=xwayland)
  15. md5sums=('SKIP')
  16.  
  17. pkgver() {
  18.   cd xf86-video-intel
  19.   git describe --always | sed 's|-|.|g'
  20. }
  21.  
  22. build() {
  23.   cd xf86-video-intel
  24.   CFLAGS="-w" ./autogen.sh --prefix=/usr/ \
  25.     --enable-dri \
  26.     --with-default-accel=sna
  27.   make
  28. }
  29.  
  30. package() {
  31.   cd xf86-video-intel
  32.   make DESTDIR="${pkgdir}" install
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement