mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
606 B
Bash
21 lines
606 B
Bash
# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
|
|
|
|
pkgname=libxxf86dga
|
|
pkgver=1.0.2
|
|
pkgrel=1
|
|
pkgdesc="X11 Direct Graphics Access extension library"
|
|
arch=(arm)
|
|
url="http://xorg.freedesktop.org/"
|
|
depends=('libxext' 'xf86dgaproto>=2.0.3')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(${url}/releases/individual/lib/libXxf86dga-${pkgver}.tar.bz2)
|
|
md5sums=('6f5f621804ee652b6cc6f2025c517c78')
|
|
|
|
build() {
|
|
cd ${startdir}/src/libXxf86dga-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--build=${CHOST} --host=${CHOST}
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
}
|