summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author4ur3l13n <aurelien@hackers.camp>2015-11-07 11:43:29 +0100
committer4ur3l13n <aurelien@hackers.camp>2015-11-07 11:43:29 +0100
commitfc1d262bb203e5d206af504c13c24469726d832c (patch)
tree440bfd52a7bb444a8a6643e103c15796d9c30e1e
parent70ca4bcbea554081b508937ea3e8c5db3932ec1c (diff)
pcr/cegui-0.7 update version
-rw-r--r--pcr/cegui-0.7/PKGBUILD48
1 files changed, 48 insertions, 0 deletions
diff --git a/pcr/cegui-0.7/PKGBUILD b/pcr/cegui-0.7/PKGBUILD
new file mode 100644
index 000000000..bbfdd5a7d
--- /dev/null
+++ b/pcr/cegui-0.7/PKGBUILD
@@ -0,0 +1,48 @@
+# Maintainer: aurelien desbrieres <aurelien@hackers.camp>
+# Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
+# Contributor: josephgbr <rafael.f.f1@gmail.com>
+
+# based on cegui from Arch Linux repository, original credits go to:
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Juergen Hoetzel <juergen@archlinux.org>
+# Contributor: William Rea <sillywilly@gmail.com>,
+# Contributor: Bjorn Lindeijer <bjorn@lindeijer.nl>
+
+pkgname=cegui-0.7
+pkgver=0.7.9
+pkgrel=4
+pkgdesc="A free library providing windowing and widgets for graphics APIs/engines (legacy version)"
+arch=('i686' 'x86_64')
+url="http://crayzedsgui.sourceforge.net"
+license=("MIT")
+depends=('glew' 'freetype2' 'libxml2' 'devil' 'freeglut' 'lua51' 'silly' 'mesa' 'glm' 'glfw')
+makedepends=('python2' 'doxygen' 'gtk2' 'boost' 'graphviz') # 'ogre' 'irrlicht')
+optdepends=("python2: python bindings"
+ "boost-libs: null renderer with python2"
+ #"ogre: ogre module"
+ #"irrlicht: irrlicht module"
+ "gtk2: gtk2 module")
+provides=('cegui')
+conflicts=('cegui')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/crayzedsgui/CEGUI-$pkgver.tar.gz")
+
+build() {
+ cd CEGUI-$pkgver
+
+ ./bootstrap
+ Lua_CFLAGS="$(pkg-config --cflags lua5.1)" \
+ Lua_LIBS="$(pkg-config --libs lua5.1)" \
+ PYTHON="/usr/bin/python2" ./configure --prefix=/usr --sysconfdir=/etc \
+ --enable-null-renderer --with-gtk2 --disable-samples \
+ --disable-ogre-renderer --disable-irrlicht-renderer
+ make
+}
+
+package() {
+ cd CEGUI-$pkgver
+
+ make DESTDIR="$pkgdir/" install
+
+ install -Dm644 doc/COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}