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