PKGBUILDs/extra/xproto/PKGBUILD

23 lines
681 B
Bash
Raw Normal View History

2009-09-26 14:35:50 +00:00
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
2009-09-26 14:35:50 +00:00
pkgname=xproto
pkgver=7.0.15
pkgrel=1
pkgdesc="X11 core wire protocol and auxiliary headers"
arch=('arm')
2009-09-26 14:35:50 +00:00
license=('custom')
url="http://xorg.freedesktop.org/"
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
md5sums=('1a2b31430d04340be2e49e8b6445e076')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
}