mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 07:57:25 +08:00
28 lines
846 B
Bash
28 lines
846 B
Bash
|
# $Id: PKGBUILD 55575 2009-10-13 20:30:06Z andyrtr $
|
||
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=xf86-video-cirrus
|
||
|
pkgver=1.3.2
|
||
|
pkgrel=2
|
||
|
pkgdesc="X.org Cirrus Logic video driver"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://xorg.freedesktop.org/"
|
||
|
license=('custom')
|
||
|
depends=('glibc')
|
||
|
makedepends=('pkgconfig' 'xorg-server>=1.7.0')
|
||
|
conflicts=('xorg-server<1.7.0')
|
||
|
groups=('xorg-video-drivers')
|
||
|
options=('!libtool')
|
||
|
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
|
||
|
LICENSE)
|
||
|
md5sums=('8195d03ed0be0975c03441e66a9f53b3'
|
||
|
'b9b570ac5c03f1fbe3e0cee5fe884b82')
|
||
|
|
||
|
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
|
||
|
}
|