1 # Maintainer: Casey Link < unnamedrambler gmail DOT com>
5 pkgdesc="Building blocks for Qt applications (development version, with docs)"
7 url="http://www.qtilities.org"
10 makedepends=('git' 'doxygen' 'graphviz')
13 conflicts=('qtilities' 'qtilities-doc')
14 _gitroot="git://github.com/JPNaude/Qtilities.git"
20 msg "Connecting to GIT server...."
22 if [ -d $_gitname ] ; then
23 cd $_gitname && git pull origin
24 msg "The local files are updated."
26 git clone $_gitroot $_gitname
32 msg "GIT checkout done or server timeout"
33 msg "Starting make..."
41 doxygen doxyfile_website
45 install -dm755 $pkgdir/usr/lib
46 install -dm755 $pkgdir/usr/include
47 install -dm755 $pkgdir/usr/share/doc/$pkgname
49 cp -rdp ./bin/* $pkgdir/usr/lib/
50 cp -r ./doc/output/html_website/* $pkgdir/usr/share/doc/$pkgname/
51 cp -r ./include/* $pkgdir/usr/include/
53 # now we overwrite the .h headers
54 MODULES=(Core CoreGui ExtensionSystem Logging ProjectManagement Testing)
55 for module in $MODULES; do
56 cp -f src/$module/source/*.h $pkgdir/usr/include/Qtilities$module/
60 # vim:set ts=2 sw=2 et: