updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / qtikz-svn / PKGBUILD
blob1bd70b6052bc4628234180cb479b5ad1ac552331
1 # Contributor: Thomas Jost <thomas.jost@gmail.com>
2 # Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
4 pkgname=qtikz-svn
5 pkgver=197
6 pkgrel=1
7 pkgdesc="A small application helping you to create TikZ diagrams (from the LaTeX pgf package)"
8 arch=('i686' 'x86_64')
9 url="http://www.hackenberger.at/blog/ktikz-editor-for-the-tikz-language/"
10 license=('GPL')
11 depends=('poppler-qt')
12 makedepends=('texlive-core')
13 conflicts=('ktikz' 'ktikz-svn')
14 provides=('ktikz')
15 makedepends=('subversion')
16 source=()
17 md5sums=()
19 _svntrunk=svn://hackenberger.at/svnroot/ktikz/trunk
20 _svnmod=qtikz
22 build() {
23   cd "$srcdir"
25   if [ -d $_svnmod/.svn ]; then
26     (cd $_svnmod && svn up -r $pkgver)
27   else
28     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
29   fi
31   msg "SVN checkout done or server timeout"
32   msg "Starting make..."
33   rm -rf $srcdir/$_svnmod-build
34   cp -r $srcdir/$_svnmod $srcdir/$_svnmod-build
35   cd $_svnmod-build
37   sed -i 's#-qt4##' qtikzconfig.pri 
38   [ -d buildqt ] || mkdir buildqt 
39   cd buildqt
40   qmake ../qtikz.pro PREFIX=/usr 
41   make 
43 package() {
44   cd $_svnmod-build
45   cd buildqt
46   make INSTALL_ROOT=$pkgdir install