core/wayland/PKGBUILD

37 lines
918 B
Bash
Raw Normal View History

2015-04-25 04:59:20 +08:00
# Contributor: Tom Gundersen <teg@jklm.no>
2013-12-22 05:28:35 +08:00
# Contributor: Sébastien Luttringer
# Contributor: Joel Teichroeb <joel@teichroeb.net>
pkgname=wayland
2017-12-13 07:23:48 +08:00
pkgver=1.14.0
pkgrel=1
2013-12-22 05:28:35 +08:00
pkgdesc='A computer display server protocol'
arch=('x86_64')
2017-12-13 07:23:48 +08:00
url='https://wayland.freedesktop.org/'
2013-12-22 05:28:35 +08:00
license=('MIT')
2016-10-21 01:47:28 +08:00
depends=('glibc' 'libffi' 'expat' 'libxml2')
makedepends=('doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
2017-12-13 07:23:48 +08:00
source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
sha1sums=('53a443be3bafe73209bbc49ef2cb134ed16e0141'
2016-07-27 18:08:43 +08:00
'SKIP')
2013-12-22 05:28:35 +08:00
build() {
cd $pkgname-$pkgver
2016-10-21 01:47:28 +08:00
./configure \
--prefix=/usr \
2017-12-13 07:23:48 +08:00
--disable-documentation \
2013-12-22 05:28:35 +08:00
--disable-static
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
2017-12-13 07:23:48 +08:00
# vim:set ts=2 sw=2 et: