34 lines
876 B
Bash
34 lines
876 B
Bash
|
# Template file for 'tomb'
|
||
|
pkgname=tomb
|
||
|
version=2.1.1
|
||
|
revision=1
|
||
|
wrksrc=Tomb-${version}
|
||
|
hostmakedepends="pkg-config"
|
||
|
makedepends="libnotify-devel gtk+-devel"
|
||
|
depends="sudo gnupg cryptsetup pinentry"
|
||
|
short_desc="A minimalistic commandline tool to manage encrypted volumes"
|
||
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
||
|
license="GPL-3"
|
||
|
homepage="https://www.dyne.org/software/tomb/"
|
||
|
distfiles="https://github.com/dyne/Tomb/archive/v${version}.tar.gz"
|
||
|
checksum=235461ad8023fc656b2f52381556b79bd99745a8475f761f94b5cc0efe01b75d
|
||
|
|
||
|
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
|
||
|
}
|
||
|
|