mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 17:44:38 +08:00
31 lines
720 B
Bash
31 lines
720 B
Bash
# Contributor: Tom Gundersen <teg@jklm.no>
|
|
# Contributor: Sébastien Luttringer
|
|
# Contributor: Joel Teichroeb <joel@teichroeb.net>
|
|
|
|
pkgname=wayland
|
|
pkgver=1.7.0
|
|
pkgrel=1
|
|
pkgdesc='A computer display server protocol'
|
|
arch=('x86_64')
|
|
url='http://wayland.freedesktop.org'
|
|
license=('MIT')
|
|
depends=('libffi' 'expat')
|
|
makedepends=('doxygen' 'xmlto' 'graphviz')
|
|
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
|
|
sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|