core/xproto/PKGBUILD

27 lines
714 B
Bash
Raw Normal View History

2013-12-18 03:49:00 +08:00
# Part of X.org group
2012-09-25 22:50:05 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
2010-03-14 23:48:48 +08:00
pkgname=xproto
2017-04-09 17:46:36 +08:00
pkgver=7.0.31
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="X11 core wire protocol and auxiliary headers"
2013-12-17 23:50:10 +08:00
arch=(x86_64)
2010-03-14 23:48:48 +08:00
license=('custom')
2017-04-09 17:46:36 +08:00
url="https://xorg.freedesktop.org"
source=("${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.gz"{,.sig})
sha1sums=('f496ce16048c0b6b854fd6aefd6efb183eb61822'
'SKIP')
validpgpkeys=('C383B778255613DFDB409D91DB221A6900000011') # Keith Packard
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2012-09-25 22:50:05 +08:00
./configure --prefix=/usr
make
}
2010-03-14 23:48:48 +08:00
2012-09-25 22:50:05 +08:00
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2014-06-25 09:36:59 +08:00
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
2013-12-07 03:53:36 +08:00
}