4 pkgdesc="JuffEd is a free, cross-platform text editor.This package also includes plugins"
6 url="http://sourceforge.net/projects/juffed"
8 makedepends=('cmake' 'subversion')
9 depends=('qt' 'qscintilla')
10 provides=('juffed' 'juffed-plugins')
11 conflicts=('juffed' 'juffed-plugins')
13 _svntrunk="https://juffed.svn.sourceforge.net/svnroot/juffed/trunk/"
18 if [ -d $_svnmod/.svn ]; then
19 (cd $_svnmod && svn up)
21 svn co $_svntrunk $_svnmod
23 msg "SVN checkout done or server timeout"
24 msg "Starting make..."
25 if [[ -d ${srcdir}/build ]]; then
26 msg "Cleaning the previous build directory..."
27 rm -rf ${srcdir}/build
32 cmake $startdir/src/$_svnmod -DCMAKE_BUILD_TYPE=Release \
33 -DCMAKE_INSTALL_PREFIX=/usr \
34 -DBUILD_TODOLIST:BOOL="1"
40 make DESTDIR=${pkgdir} install