summaryrefslogtreecommitdiff
path: root/community/weston/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/weston/PKGBUILD')
-rw-r--r--community/weston/PKGBUILD20
1 files changed, 8 insertions, 12 deletions
diff --git a/community/weston/PKGBUILD b/community/weston/PKGBUILD
index d4c56b293..25425c83b 100644
--- a/community/weston/PKGBUILD
+++ b/community/weston/PKGBUILD
@@ -1,25 +1,24 @@
-# $Id: PKGBUILD 92508 2013-06-07 12:43:24Z seblu $
+# $Id: PKGBUILD 94173 2013-07-15 21:54:10Z tomegun $
# Maintainer: Sébastien Luttringer
# Contributor: Joel Teichroeb <joel@teichroeb.net>
pkgname=weston
-pkgver=1.1.1
-pkgrel=1
+pkgver=1.2.0
+pkgrel=2
pkgdesc='Reference implementation of a Wayland compositor'
arch=('i686' 'x86_64')
url='http://wayland.freedesktop.org'
license=('MIT')
options=(!libtool)
-depends=('libxkbcommon' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango')
+depends=('libxkbcommon' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango' 'colord')
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
-sha1sums=('5239afe177dadbded3c0018b55dd1045be5f84b2')
+sha1sums=('23201d31e71768e5ec3de0d10fa6de988dd273c8')
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
- --libexecdir=/usr/lib/weston \
- --disable-android-compositor
+ --libexecdir=/usr/lib/weston
make
}
@@ -29,11 +28,8 @@ package() {
# license
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
# embed more clients
- for _c in calibrator clickdot cliptest dnd editor eventdemo flower gears image \
- resizor simple-egl simple-shm simple-touch smoke transformed view; do
+ for _c in calibrator clickdot cliptest dnd editor eventdemo flower fullscreen 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
}