blob: 73185b4086e06967c0d95721f53117e8d5bc2ce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Alexandre Pujol <alexandre@pujol.io>
# Contributor: parazyd <parazyd@dyne.org>
# Contributor: nignux <nignux@freaknet.org>
# Contributor: fauno <fauno@parabola.nu>
# Contributor: BoySka
pkgbase=tomb
pkgname=(tomb tomb-kdf)
pkgver=2.11
pkgrel=3
pkgdesc="Crypto Undertaker, a simple tool to manage encrypted storage"
arch=('any')
url="https://www.dyne.org/software/tomb/"
license=('GPL3')
source=("https://files.dyne.org/tomb/releases/Tomb-$pkgver.tar.gz"
"https://files.dyne.org/tomb/releases/Tomb-$pkgver.tar.gz.sha"
"https://files.dyne.org/tomb/releases/Tomb-$pkgver.tar.gz.asc"
"_tomb")
# The first hash comes from the .sha file
sha256sums=('f524f997e9967371ae65280726de32ea123ef7bf6fa9998f74c9ae90ba27c315'
'777bfe815f68a5fab1c6d0e186e6d4fe7f889e68ccc78de54bb40ce4fdd634a2'
'SKIP'
'8007bc208fdac3fbd7a61320b48c4c8073639b478fcc410145a3792986aca9e8')
# The public key is found at https://keybase.io/jaromil
# gpg --recv-keys 0x73b35da54acb7d10
validpgpkeys=('6113D89CA825C5CEDD02C87273B35DA54ACB7D10')
build() {
cd "$srcdir/Tomb-$pkgver/extras/kdf-keys"
make
}
# The checks require root access
#check() {
# cd "$srcdir/Tomb-$pkgver"
# make test
#}
package_tomb() {
depends=('cryptsetup' 'gnupg' 'sudo' 'zsh' 'e2fsprogs' 'inetutils' 'pinentry')
optdepends=(
'steghide: steganography'
'dcfldd: show nice progress during massive I/O'
'qrencode: for paper backups of keys'
'plocate: fast search file names'
'recoll: fast search file contents'
'lsof: allows the operation slam'
'argon2: support for argon2 KDF'
)
arch=('any')
cd "$srcdir/Tomb-$pkgver"
make DESTDIR="$pkgdir" PREFIX=/usr install
cd "$srcdir/Tomb-$pkgver/extras/translations"
make DESTDIR="$pkgdir" PREFIX=/usr install
install -Dm0644 "$srcdir/_tomb" "$pkgdir/usr/share/zsh/site-functions/_tomb"
}
package_tomb-kdf() {
pkgdesc="Crypto Undertaker extensions to improve password security"
arch=('i686' 'x86_64')
depends=('libgcrypt')
cd "$srcdir/Tomb-$pkgver/extras/kdf-keys"
make DESTDIR="$pkgdir" PREFIX=/usr install
}
|