core/wayland/PKGBUILD

31 lines
720 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
2015-04-25 04:59:20 +08:00
pkgver=1.7.0
pkgrel=1
2013-12-22 05:28:35 +08:00
pkgdesc='A computer display server protocol'
arch=('x86_64')
2013-12-22 05:28:35 +08:00
url='http://wayland.freedesktop.org'
license=('MIT')
depends=('libffi' 'expat')
2015-04-25 04:59:20 +08:00
makedepends=('doxygen' 'xmlto' 'graphviz')
2013-12-22 05:28:35 +08:00
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
2015-04-25 04:59:20 +08:00
sha1sums=('a731201534dcf6ec76a1184411724376cbf1acb6')
2013-12-22 05:28:35 +08:00
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"
}