summaryrefslogtreecommitdiff
path: root/community-testing/clanlib/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/clanlib/PKGBUILD')
-rw-r--r--community-testing/clanlib/PKGBUILD37
1 files changed, 37 insertions, 0 deletions
diff --git a/community-testing/clanlib/PKGBUILD b/community-testing/clanlib/PKGBUILD
new file mode 100644
index 000000000..ca6ff88fd
--- /dev/null
+++ b/community-testing/clanlib/PKGBUILD
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 68979 2012-04-06 19:20:47Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+
+pkgname=clanlib
+pkgver=2.3.6
+pkgrel=2
+pkgdesc="A multi-platform game development library."
+arch=('i686' 'x86_64')
+url="http://clanlib.org/"
+license=('zlib')
+depends=('alsa-lib' 'libjpeg' 'libmikmod' 'libpng' 'libvorbis' 'libxi' 'libxmu' 'mesa' 'sdl_gfx' 'freetype2' 'pcre' 'sqlite')
+makedepends=('doxygen' 'graphviz')
+options=('!libtool')
+source=(http://clanlib.org/download/releases-2.0/ClanLib-${pkgver}.tgz)
+md5sums=('aa037a8a6297fb0b2efd927b1b15e8de')
+
+build() {
+ cd ${srcdir}/ClanLib-${pkgver}
+
+ ./configure --prefix=/usr --enable-docs
+
+ make
+ # Somehow this breaks. :(
+ #make html
+}
+
+package() {
+ cd ${srcdir}/ClanLib-${pkgver}
+
+ make DESTDIR=${pkgdir} install
+ #make DESTDIR=${pkgdir} install-html
+
+ install -d ${pkgdir}/usr/share/licenses/${pkgname}
+ install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}
+
+# vim: sw=2:ts=2 et: