mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:44:36 +08:00
37 lines
918 B
Bash
37 lines
918 B
Bash
# Contributor: Tom Gundersen <teg@jklm.no>
|
|
# Contributor: Sébastien Luttringer
|
|
# Contributor: Joel Teichroeb <joel@teichroeb.net>
|
|
|
|
pkgname=wayland
|
|
pkgver=1.14.0
|
|
pkgrel=1
|
|
pkgdesc='A computer display server protocol'
|
|
arch=('x86_64')
|
|
url='https://wayland.freedesktop.org/'
|
|
license=('MIT')
|
|
depends=('glibc' 'libffi' 'expat' 'libxml2')
|
|
makedepends=('doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
|
|
validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
|
|
source=("https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
sha1sums=('53a443be3bafe73209bbc49ef2cb134ed16e0141'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-documentation \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|