mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
27 lines
993 B
Bash
27 lines
993 B
Bash
# $Id: PKGBUILD 44821 2009-07-04 11:54:05Z jgc $
|
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=xf86-video-rendition
|
|
pkgver=4.2.2
|
|
pkgrel=1
|
|
pkgdesc="X.org Rendition video driver"
|
|
arch=(i686 x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
makedepends=('pkgconfig' 'xorg-server>=1.6.0')
|
|
conflicts=('xorg-server<1.6.0')
|
|
options=('!libtool' '!strip')
|
|
groups=('xorg-video-drivers')
|
|
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
|
|
LICENSE)
|
|
md5sums=('562955e5c0abb19e5f050a100be2c920' 'd7c1c0dfc2e183f162162ef619c61f24')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
strip --strip-debug "${pkgdir}/usr/lib/xorg/modules/drivers/rendition_drv.so" || return 1
|
|
}
|