updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / nautilus-locked-folder / PKGBUILD
blobc8652187f473a2562e9c62fb4d9335cf0009e166
1 # $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
2 # Contributor: William Rea <sillywilly@gmail.com>
3 # Maintainer: Roman Kyrylych <roman@archlinux.org>
4 # Maintainer: Lucas SaliĆ©s Brum <lucas@archlinux.com.br>
6 pkgname=nautilus-locked-folder
7 pkgver=8
8 pkgrel=1
9 pkgdesc="A plugin that allows to encrypt the contents of a folder using the Blowfish algorithm"
10 arch=('i686' 'x86_64')
11 url="http://www.gnome.org/projects/nautilus-locked-folders"
12 license=('GPL')
13 depends=('nautilus' 'openssl' 'libglade' 'libgnomeui' 'eel')
14 makedepends=('subversion' 'gnome-common' 'intltool')
15 options=('!libtool' '!emptydirs')
16 _svntrunk=http://svn.gnome.org/svn/nautilus-locked-folder/trunk
17 _svnmod=nautilus-locked-folder
19 build() {
20   cd $srcdir
22   if [ -d $_svnmod/.svn ]; then
23     (cd $_svnmod && svn up)
24   else
25     svn co $_svntrunk --config-dir ./ $_svnmod
26   fi
28   msg "SVN checkout done or server timeout"
29   msg "Starting make..."
31   cp -r $_svnmod $_svnmod-build
32   cd $_svnmod-build
34   ./autogen.sh
36   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
37   make || return 1
38   make DESTDIR=$pkgdir install
40   rm -rf $srcdir/$_svnmod-build