PKGBUILDs/community/weston/PKGBUILD

39 lines
1.1 KiB
Bash
Raw Normal View History

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
pkgname=weston
2013-11-01 15:35:39 +00:00
pkgver=1.3.1
2013-11-10 19:37:18 +00:00
pkgrel=1.1
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')
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
2013-11-01 15:35:39 +00:00
sha1sums=('56acdfde4d1a3871d6e54f0cdbcf2736e73e979a')
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"
export WESTON_NATIVE_BACKEND="rpi-backend.so"
2013-07-16 23:05:56 +00:00
fi
./configure \
--prefix=/usr \
2013-08-23 19:24:08 +00:00
--libexecdir=/usr/lib/weston \
--enable-demo-clients
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"
}