updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / ogitor-hg / PKGBUILD
blob71930cd2018cb05f1667610b129e9e8215015be6
1 # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
2 pkgname=ogitor-hg
3 pkgver=10
4 pkgrel=1
5 pkgdesc="scene editing framework for Ogre3D"
6 arch=('i686' 'x86_64')
7 url='http://www.ogitor.org'
8 license=('LGPL')
9 depends=('ogre' 'qt')
10 makedepends=('cmake' 'mercurial')
11 #optdepends=('cppunit: unit testing'
12 #            'doxygen: generate API docs')
13 conflicts=('ogitor')
14 provides=('ogitor')
15 source=()
16 md5sums=()
18 _hgtrunk="http://hg.ogitor.org/0.3"
19 _hgmod="ogitor"
21 build() {
22   cd ${srcdir}
24   if [ -d $_hgmod/.hg ]; then
25     cd $_hgmod && hg pull -u || return 1
26   else
27     hg clone $_hgtrunk $_hgmod || return 1
28   fi
30   msg "Mercurial checkout done or server timeout"
31   msg "Starting make..."
33   cd ${srcdir}
34   if [ -d $_hgmod-build ]; then
35           rm -rf $_hgmod-build
36   fi
37   hg clone $_hgmod $_hgmod-build
38   cd $_hgmod-build
40   cd qtOgitor/qtpropertybrowser-2.5 && touch .licenseAccepted || return 1
41   sh configure -library && qmake qtpropertybrowser.pro && make || return 1
43   cd ${srcdir}/$_hgmod-build
44   cmake . -DCMAKE_INSTALL_PREFIX=/usr
45   make || return 1
46   #make doc || return 1
47   make DESTDIR=${pkgdir} install || return 1
49   rm -rf ${srcdir}/$_hgmod-build