mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
686 B
Bash
22 lines
686 B
Bash
# $Id: PKGBUILD 30188 2009-03-17 04:25:00Z eric $
|
|
#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')
|
|
sha1sums=('8f6c112f607a137dce5d8958753c770ac3f06c14')
|
|
|
|
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
|
|
}
|
|
|