wok view ecryptfs-simple/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 241fb98cab1c
children 083af5061d39
line source
1 # SliTaz package receipt.
3 PACKAGE="ecryptfs-simple"
4 VERSION="2017"
5 CATEGORY="security"
6 SHORT_DESC="A very simple utility for working with eCryptfs"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 #WEB_SITE="https://xyne.archlinux.ca/projects/ecryptfs-simple/"
11 WEB_SITE="https://github.com/mhogomchungu/ecryptfs-simple"
12 WGET_URL="${WEB_SITE}src/$TARBALL"
13 TAGS="cryptography"
15 DEPENDS="libgcrypt ecryptfs-utils util-linux-mount libgpg-error \
16 util-linux-blkid util-linux-uuid"
17 BUILD_DEPENDS="cmake libgcrypt-dev pkg-config \
18 ecryptfs-utils-dev util-linux-mount-dev keyutils-dev"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - https://aur.archlinux.org/packages/ecryptfs-simple 2>/dev/null | \
24 sed '/ecryptfs-simple-/!d;s|.*simple-||;s|.tar.*||;q'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 cmake -DCMAKE_INSTALL_PREFIX=/usr . &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cp -a $install/usr $fs
39 }