summaryrefslogtreecommitdiff
path: root/community/cegui/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-29 00:06:25 -0800
committerroot <root@rshg054.dnsready.net>2013-01-29 00:06:25 -0800
commit2cb7f65fb24926493d457f6931e421e27aa629da (patch)
treedfd419375945457b6b6dd74c280812f8e5533743 /community/cegui/PKGBUILD
parent1b9f6dc846379470b620b5dbb9d4d7acd1de148c (diff)
Tue Jan 29 00:06:25 PST 2013
Diffstat (limited to 'community/cegui/PKGBUILD')
-rw-r--r--community/cegui/PKGBUILD20
1 files changed, 11 insertions, 9 deletions
diff --git a/community/cegui/PKGBUILD b/community/cegui/PKGBUILD
index 69d0f79b9..584eec445 100644
--- a/community/cegui/PKGBUILD
+++ b/community/cegui/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 81101 2012-12-12 00:47:27Z eric $
+# $Id: PKGBUILD 83243 2013-01-28 16:49:29Z stephane $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>,
@@ -7,7 +7,7 @@
pkgbase=cegui
pkgname=('cegui' 'cegui-docs')
pkgver=0.7.7
-pkgrel=4
+pkgrel=5
pkgdesc="A free library providing windowing and widgets for graphics APIs/engines"
arch=('i686' 'x86_64')
url="http://crayzedsgui.sourceforge.net"
@@ -16,14 +16,15 @@ license=("MIT")
depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 'lua51' 'silly')
makedepends=('python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz')
optdepends=("python2: python bindings"
- "ogre: ogre module")
+ "ogre: ogre module"
+ "gtk2: gtk2 module")
#"irrlicht: irrlicht module") maybe again at some point
options=(!libtool)
source=(http://downloads.sourceforge.net/crayzedsgui/CEGUI-$pkgver.tar.gz)
md5sums=('8b83577f86eaa1581765dd155c7c8f24')
build() {
- cd $srcdir/CEGUI-${pkgver}
+ cd "$srcdir/CEGUI-${pkgver}"
./bootstrap
@@ -36,19 +37,20 @@ build() {
}
package_cegui() {
- cd $srcdir/CEGUI-${pkgver}
+ cd "$srcdir/CEGUI-${pkgver}"
- make DESTDIR=${pkgdir} install
+ make DESTDIR="${pkgdir}" install
- install -Dm644 doc/COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+ install -Dm644 doc/COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}
package_cegui-docs() {
pkgdesc="Documentation for cegui"
depends=()
- cd $srcdir/CEGUI-${pkgver}
+ cd "$srcdir/CEGUI-${pkgver}"
cd doc/doxygen && doxygen
- cd .. && make DESTDIR=${pkgdir} install-html
+ cd .. && make DESTDIR="${pkgdir}" install-html
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}