summaryrefslogtreecommitdiff
path: root/gnome-unstable/cogl/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'gnome-unstable/cogl/PKGBUILD')
-rw-r--r--gnome-unstable/cogl/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnome-unstable/cogl/PKGBUILD b/gnome-unstable/cogl/PKGBUILD
new file mode 100644
index 000000000..11d671d6b
--- /dev/null
+++ b/gnome-unstable/cogl/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 136612 2011-08-30 21:40:13Z ibiru $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+pkgname=cogl
+pkgver=1.7.6
+pkgrel=1
+pkgdesc="An object oriented GL/GLES Abstraction/Utility Layer"
+arch=('i686' 'x86_64')
+url="http://www.clutter-project.org/"
+license=('GPL2')
+depends=('libdrm' 'libxext' 'libxdamage' 'libxcomposite' 'gdk-pixbuf2' 'pango')
+makedepends=('mesa' 'gobject-introspection')
+options=(!libtool)
+source=(http://download.gnome.org/sources/$pkgname/1.7/$pkgname-$pkgver.tar.xz)
+sha256sums=('4dd97260ecf464753f9daa30e10ee9d160b323515811b73bef8d84d3274ae072')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: