summaryrefslogtreecommitdiff
path: root/community/weston/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/weston/PKGBUILD')
-rw-r--r--community/weston/PKGBUILD16
1 files changed, 10 insertions, 6 deletions
diff --git a/community/weston/PKGBUILD b/community/weston/PKGBUILD
index c0f56bf36..0bae3a41b 100644
--- a/community/weston/PKGBUILD
+++ b/community/weston/PKGBUILD
@@ -2,16 +2,17 @@
# Contributor: Joel Teichroeb <joel@teichroeb.net>
pkgname=weston
-pkgver=1.0.6
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
pkgdesc='Reference implementation of a Wayland compositor'
arch=('i686' 'x86_64')
url='http://wayland.freedesktop.org'
license=('MIT')
options=(!libtool)
-depends=('libxkbcommon' 'wayland' 'mesa' 'cairo' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'xkeyboard-config')
+depends=('libxkbcommon' 'libunwind' 'wayland' 'mesa' 'cairo' 'poppler-glib' 'mtdev' 'libxcursor' 'glu'
+ 'pango' 'xkeyboard-config')
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
-sha1sums=('d39d487317ededb9d66365bc1402ee0bc5e20dd0')
+sha1sums=('0929afa86d795e0e970936623d86bdd950d48e8d')
build() {
cd $pkgname-$pkgver
@@ -28,8 +29,11 @@ package() {
# license
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
# embed more clients
- for _c in clickdot cliptest dnd editor eventdemo flower gears image \
- keyboard resizor simple-egl simple-shm smoke view; do
+ for _c in calibrator clickdot cliptest dnd editor eventdemo flower gears image \
+ resizor simple-egl simple-shm simple-touch smoke transformed view; do
install -Dm755 "clients/$_c" "$pkgdir/usr/bin/weston-$_c"
done
+ for _c in info keyboard screensaver screenshooter tablet-shell terminal; do
+ install -Dm755 "clients/weston-$_c" "$pkgdir/usr/bin/weston-$_c"
+ done
}