diff options
author | root <root@rshg054.dnsready.net> | 2012-10-07 00:37:20 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-10-07 00:37:20 -0700 |
commit | 682e4a12f537d598cb116ba394ceeae1eafc281e (patch) | |
tree | b48c04d80686157d339741b922053c2e88b15d68 /testing/xf86-video-sis/PKGBUILD | |
parent | e7552010f531ef1b114352f0ce71a307360bf1d4 (diff) |
Sun Oct 7 00:37:16 PDT 2012
Diffstat (limited to 'testing/xf86-video-sis/PKGBUILD')
-rw-r--r-- | testing/xf86-video-sis/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/xf86-video-sis/PKGBUILD b/testing/xf86-video-sis/PKGBUILD new file mode 100644 index 000000000..29e11db1f --- /dev/null +++ b/testing/xf86-video-sis/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 168240 2012-10-06 20:08:16Z andyrtr $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=xf86-video-sis +pkgver=0.10.7 +pkgrel=2 +pkgdesc="X.org SiS video driver" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +license=('custom') +depends=('glibc') +makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'xf86dgaproto' 'resourceproto' 'scrnsaverproto') +conflicts=('xorg-server<1.13.0' 'X-ABI-VIDEODRV_VERSION<13' 'X-ABI-VIDEODRV_VERSION>=14') +optdepends=('sis-dri: DRI1 support from community repo') +options=('!libtool') +groups=('xorg-drivers' 'xorg') +source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('be2eb6acba081e88dabc5be9db379e3da89a4d4edeb68064f204bf343a411cd0') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} |