wok-next annotate ecryptfs-simple/receipt @ rev 21584

updated ddrescue (1.14 -> 1.25)
author Hans-G?nter Theisgen
date Tue Jun 23 16:38:46 2020 +0100 (2020-06-23)
parents
children
rev   line source
al@21118 1 # SliTaz package receipt v2.
al@21118 2
al@21118 3 PACKAGE="ecryptfs-simple"
al@21118 4 VERSION="2017"
al@21118 5 CATEGORY="security"
al@21118 6 SHORT_DESC="A very simple utility for working with eCryptfs"
al@21118 7 MAINTAINER="pascal.bellard@slitaz.org"
al@21118 8 LICENSE="GPL2"
al@21118 9 WEB_SITE="https://xyne.archlinux.ca/projects/ecryptfs-simple/"
al@21118 10
al@21118 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@21118 12 WGET_URL="${WEB_SITE}src/$TARBALL"
al@21118 13 TARBALL_SHA1="1f94f21500ca870e3a5302a6fe8fe28544484da2"
al@21118 14
al@21118 15 BUILD_DEPENDS="cmake libgcrypt-dev ecryptfs-utils-dev util-linux-mount-dev"
al@21118 16 DEPENDS="ecryptfs-utils keyutils libgcrypt util-linux-mount"
al@21118 17
al@21118 18 TAGS="cryptography"
al@21118 19
al@21118 20 compile_rules() {
al@21118 21 mkdir build
al@21118 22 cd build
al@21118 23 cmake \
al@21118 24 -DCMAKE_INSTALL_PREFIX=/usr \
al@21118 25 .. &&
al@21118 26 make &&
al@21118 27 make install || return 1
al@21118 28
al@21118 29 cook_pick_manpages $src/ecryptfs_src/ecryptfs.7
al@21118 30 }