39 lines
1010 B
Bash
39 lines
1010 B
Bash
# Template file for 'tomb'
|
|
pkgname=tomb
|
|
version=2.5
|
|
revision=2
|
|
wrksrc=Tomb-${version}
|
|
build_style=gnu-makefile
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libnotify-devel gtk+-devel"
|
|
depends="sudo gnupg cryptsetup pinentry zsh"
|
|
short_desc="A minimalistic commandline tool to manage encrypted volumes"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.dyne.org/software/tomb/"
|
|
distfiles="https://github.com/dyne/Tomb/archive/v${version}.tar.gz"
|
|
checksum=b0bdf0afbccf8bce8402333e83044d875853c6e8759acf1819ee3585de29891e
|
|
|
|
pre_build() {
|
|
sed -i extras/gtk-tray/Makefile \
|
|
-e's;$(CC) ;$(CC) $(CFLAGS) $(LDFLAGS) ;'
|
|
}
|
|
do_install() {
|
|
vbin tomb
|
|
vman doc/tomb.1
|
|
vdoc doc/KEY_SPECIFICATIONS.txt
|
|
vdoc doc/LinuxHDEncSettings.txt
|
|
vdoc doc/Luks_on_disk_format.pdf
|
|
vdoc doc/New_methods_in_HD_encryption.pdf
|
|
vdoc doc/TKS1-draft.pdf
|
|
vdoc doc/TODO.org
|
|
vdoc doc/bertini_thesis.pdf
|
|
vdoc doc/tomb_manpage.pdf
|
|
|
|
# tomb-gtk-tray
|
|
cd extras/gtk-tray
|
|
make
|
|
vbin tomb-gtk-tray
|
|
}
|
|
|