2013-07-16 23:05:56 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Sébastien Luttringer
|
|
|
|
# Contributor: Joel Teichroeb <joel@teichroeb.net>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - export flags for rpi
|
2014-02-27 14:30:13 +00:00
|
|
|
# - patch to not call vc_dispmanx_set_wl_buffer_in_use
|
2013-07-16 23:05:56 +00:00
|
|
|
|
|
|
|
pkgname=weston
|
2014-05-25 20:24:16 +00:00
|
|
|
pkgver=1.5.0
|
2014-08-19 12:43:16 +00:00
|
|
|
pkgrel=2
|
2013-07-16 23:05:56 +00:00
|
|
|
pkgdesc='Reference implementation of a Wayland compositor'
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://wayland.freedesktop.org'
|
|
|
|
license=('MIT')
|
|
|
|
depends=('libxkbcommon' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango' 'colord')
|
2013-12-28 21:34:10 +00:00
|
|
|
[ "$CARCH" == 'armv6h' ] && makedepends=('raspberrypi-firmware')
|
2014-05-25 20:24:16 +00:00
|
|
|
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
|
|
|
|
sha1sums=('42939c536bcdfbd92edb5e51af76ce7f0a4c6ed7')
|
2013-07-16 23:05:56 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
if [ "$CARCH" == 'armv6h' ]; then
|
|
|
|
export RPI_BCM_HOST_LIBS="-L/opt/vc/lib"
|
|
|
|
export RPI_BCM_HOST_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
|
2013-11-10 19:30:05 +00:00
|
|
|
export WESTON_NATIVE_BACKEND="rpi-backend.so"
|
2014-04-16 12:51:57 +00:00
|
|
|
export RPI_COMPOSITOR_LIBS="-ludev -lmtdev -lbcm_host"
|
2014-02-27 14:30:13 +00:00
|
|
|
CONFIG='--disable-egl'
|
2013-07-16 23:05:56 +00:00
|
|
|
fi
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2013-08-23 19:24:08 +00:00
|
|
|
--libexecdir=/usr/lib/weston \
|
2014-08-19 12:43:16 +00:00
|
|
|
--with-cairo=gl \
|
2014-02-27 14:30:13 +00:00
|
|
|
--enable-demo-clients-install $CONFIG
|
2013-07-16 23:05:56 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# license
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
}
|