1 # Contributor: totoloco <totoloco at gmail>
5 pkgdesc="A PHP IDE written in C++ with features like code completion, code templates, find (and replace) in project."
7 url="http://www.shishkabab.net/skphpide.html"
10 makedepends=(svn gcc cmake make)
17 _svntrunk=https://skphpide.svn.sourceforge.net/svnroot/skphpide/trunk/
23 if [ -d $_svnmod/.svn ]; then
24 (cd $_svnmod && svn up && make clean)
26 svn co $_svntrunk $_svnmod
29 msg "SVN checkout done or server timeout"
30 msg "Starting make..."
34 CMakeFlags="-DBIN_INSTALL_DIR=/usr/bin -DXDG_APPS_INSTALL_DIR=/usr/share/applications -DDATA_INSTALL_DIR=/usr/share/kde4/apps"
35 cmake $CMakeFlags . || return 1
36 make DESTDIR="$pkgdir/" install
39 # vim:set ts=2 sw=2 et: