1 # Contributor: Cochise Cesar <cochisepoeta@gmail.com>
6 pkgdesc="Qt4 cross-platform client for Twitter - branch is the most atual with new features"
8 url="http://code.google.com/p/qwit/"
10 depends=('qt' 'openssl')
15 _svntrunk=http://qwit.googlecode.com/svn/branches/ng/
20 msg "Connecting to SVN server...."
22 if [ -d "$_svnmod/.svn" ] ; then
23 (cd $_svnmod && svn up -r $pkgver)
25 svn checkout $_svntrunk --config-dir ./ -r $pkgver $_svnmod
27 msg "SVN checkout done or server timeout"
28 msg "Starting make..."
30 rm -rf "$_svnmod-build"
31 cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
32 cd "$srcdir/$_svnmod-build"
34 qmake PREFIX=/usr || return 1
36 make INSTALL_ROOT="$pkgdir" install || return 1