diff options
author | root <root@rshg054.dnsready.net> | 2013-08-24 01:49:18 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-24 01:49:18 -0700 |
commit | 49e0f6ae5dad013852999f497117d6798b2fb085 (patch) | |
tree | 0df325f48646f4489efda55fa9c9e9bebbe24363 /community/weston/PKGBUILD | |
parent | dbffe56f58d40a9a456baeba5d488c9f968a352a (diff) |
Sat Aug 24 01:47:21 PDT 2013
Diffstat (limited to 'community/weston/PKGBUILD')
-rw-r--r-- | community/weston/PKGBUILD | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/community/weston/PKGBUILD b/community/weston/PKGBUILD index 25425c83b..89764b57a 100644 --- a/community/weston/PKGBUILD +++ b/community/weston/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 94173 2013-07-15 21:54:10Z tomegun $ +# $Id: PKGBUILD 96283 2013-08-23 18:19:07Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Joel Teichroeb <joel@teichroeb.net> pkgname=weston -pkgver=1.2.0 -pkgrel=2 +pkgver=1.2.1 +pkgrel=1 pkgdesc='Reference implementation of a Wayland compositor' arch=('i686' 'x86_64') url='http://wayland.freedesktop.org' @@ -12,13 +12,14 @@ license=('MIT') options=(!libtool) depends=('libxkbcommon' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango' 'colord') source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz") -sha1sums=('23201d31e71768e5ec3de0d10fa6de988dd273c8') +sha1sums=('111e639940ff06c6b8f3fcb866b53449a5690d3e') build() { cd $pkgname-$pkgver ./configure \ --prefix=/usr \ - --libexecdir=/usr/lib/weston + --libexecdir=/usr/lib/weston \ + --enable-demo-clients make } @@ -27,9 +28,4 @@ package() { make DESTDIR="$pkgdir" install # license install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" - # embed more clients - 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 } |