1 # Maintainer: Eduardo Sánchez Muñoz <eduardosanchezmunoz@gmail.com>
3 pkgname=libfsaction-svn
6 pkgdesc="Library to perform operations on file systems like delete, copy, move files, create directories..."
8 url="http://code.google.com/p/libfsaction/"
11 makedepends=('gcc' 'subversion' 'cmake')
13 conflicts=('libfsaction')
14 provides=('libfsaction')
18 _svntrunk=https://libfsaction.googlecode.com/svn/trunk/
24 if [ -d "$_svnmod/.svn" ]; then
25 (cd $_svnmod && svn up -r $pkgver)
27 svn co $_svntrunk -r $pkgver $_svnmod
30 msg "SVN checkout done or server timeout"
31 msg "Starting make..."
33 rm -rf "$srcdir/$_svnmod-build"
34 mkdir -p "$srcdir/$_svnmod-build"
35 cd "$srcdir/$_svnmod-build"
37 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr "$srcdir/$_svnmod/libfsaction"
42 cd "$srcdir/$_svnmod-build"
43 make DESTDIR="$pkgdir" install