mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
584 B
Bash
19 lines
584 B
Bash
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=bigreqsproto
|
|
pkgver=1.0.2
|
|
pkgrel=2
|
|
pkgdesc="X11 Big Requests extension wire protocol"
|
|
arch=('arm')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom:OpenGroup')
|
|
source=(http://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('95c29d9d10bf2868996c0c47a3b9a8dc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|