1 # Maintainer: nignux <nignux@freaknet.org>
6 pkgdesc="Crypto Undertaker, simple tool to manage encrypted storage, from the hashes of the dyne:bolic nesting mechanism."
8 url="http://tomb.dyne.org/"
10 depends=('bc' 'cryptsetup'
12 'libnotify' 'pinentry'
14 makedepends=('git' 'autoconf')
15 optdepends=('steghide: steganography support'
16 'dcfldd: dd progress bar support'
17 'wipe: secure delete support')
18 install=${pkgname}.install
21 #You can customize _gituser and _gitbranch to test specific developer's repo
25 _gitroot="git://github.com/${_gituser}/Tomb.git"
26 _gitname="tomb-${_gituser}"
29 msg "Connecting to GIT server...."
31 if [ -d ${_gitname} ] ; then
32 cd ${_gitname} && git pull origin
33 git checkout ${_gitbranch}
34 msg "The local files are updated."
36 git clone -b ${_gitbranch} ${_gitroot} ${_gitname}
39 msg "GIT checkout done"
40 msg "Starting make..."
42 cd ${srcdir}/${_gitname}
45 ./configure --prefix=/usr
50 cd ${srcdir}/${_gitname}
51 make DESTDIR=${pkgdir} install