summaryrefslogtreecommitdiff
path: root/community/glitz/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/glitz/PKGBUILD')
-rw-r--r--community/glitz/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/glitz/PKGBUILD b/community/glitz/PKGBUILD
new file mode 100644
index 000000000..98c9f7eea
--- /dev/null
+++ b/community/glitz/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 85262 2013-02-28 10:34:33Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+
+pkgname=glitz
+pkgver=0.5.6
+pkgrel=4
+pkgdesc='OpenGL image compositing library'
+arch=('x86_64' 'i686')
+url='http://cairographics.org/'
+license=('BSD')
+depends=('libgl' 'glibc')
+makedepends=('mesa-libgl')
+options=('!libtool')
+source=("http://cairographics.org/snapshots/$pkgname-$pkgver.tar.gz")
+sha256sums=('132adf06e48531f4c01b6ba5843881e2b584a170c5222353d03cbef736d4a471')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et: