mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
36 lines
997 B
Bash
36 lines
997 B
Bash
# $Id$
|
|
# Maintainer: Sébastien Luttringer
|
|
# Contributor: Joel Teichroeb <joel@teichroeb.net>
|
|
|
|
# remove when bumped upstream
|
|
|
|
pkgname=weston
|
|
pkgver=1.12.0
|
|
pkgrel=1
|
|
pkgdesc='Reference implementation of a Wayland compositor'
|
|
arch=('i686' 'x86_64')
|
|
url='http://wayland.freedesktop.org'
|
|
license=('MIT')
|
|
depends=('wayland' 'libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango' 'colord')
|
|
makedepends=('wayland-protocols')
|
|
validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611') # Bryce Harrington
|
|
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
sha1sums=('36f1a31a32964be8ec782898cc31c70c90ba5697'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/weston \
|
|
--enable-libinput-backend \
|
|
--enable-demo-clients-install
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
# license
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|