Commit 4d266c59 authored by Seblu's avatar Seblu
Browse files

add wayland


git-svn-id: https://seblu.net/s/archpkg@281 02741741-5192-46b8-8916-7152b19231d9
parent 3f0612f0
Loading
Loading
Loading
Loading

wayland/PKGBUILD

0 → 100644
+30 −0
Original line number Diff line number Diff line
# $Id$
# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
# Contributor: Joel Teichroeb <joel@teichroeb.net>

pkgname=wayland
pkgver=1.0.3
pkgrel=2
pkgdesc='A computer display server protocol'
arch=('i686' 'x86_64')
url='http://wayland.freedesktop.org'
license=('MIT')
depends=('libffi' 'libegl' 'expat')
makedepends=('doxygen')
options=(!libtool)
source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz")
sha1sums=('f71a3fb5b6534cce35ac7456a5fd540fc3806fc1')

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
  install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}

# vim:set ts=2 sw=2 et: