Magellan Linux

Contents of /trunk/core/cryptsetup/cryptsetup-2.6.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33480 - (show annotations) (download)
Mon Jul 24 11:42:09 2023 UTC (10 months, 1 week ago) by niro
File size: 1002 byte(s)
-ver bump to 2.6.1-r1
1 # $Id$
2
3 PNAME="cryptsetup"
4 PVER="2.6.1"
5 PBUILD="r1"
6
7 PCAT="sys-fs"
8
9 DESCRIPTION="Userspace setup tool for transparent encryption of block devices using dm-crypt."
10 HOMEPAGE="http://code.google.com/p/cryptsetup/"
11
12 DEPEND=">= sys-fs/device-mapper-2.02
13 >= dev-libs/openssl-3.1
14 >= dev-libs/popt-1.19
15 >= sys-fs/e2fsprogs-1.47
16 >= sys-libs/libuuid-2.39
17 >= dev-libs/json-c-0.16
18 >= app-crypt/argon2-2019"
19
20 SDEPEND=">= sys-dev/automake-4
21 >= sys-dev/autoconf-5"
22
23 SRCFILE="${PNAME}-${PVER}.tar.xz"
24 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
25
26 sminclude multilib mbuild
27 msetfeature "!check"
28
29 SRC_URI=(
30 https://www.kernel.org/pub/linux/utils/cryptsetup/v${PVER%.*}/${SRCFILE}
31 mirror://${PNAME}/${SRCFILE}
32 )
33
34 UP2DATE="updatecmd -listonly http://gitlab.com/cryptsetup/cryptsetup/tags | grep '/v[0-9]' | sed 's:.*v\(.*\).*:\1:;s:_:.:g;/[tar|zip]/d' | upsort_pipe"
35
36 src_compile()
37 {
38 mconfigure --enable-nls --enable-libargon2 --enable-cryptsetup-reencrypt --disable-ssh-token --disable-asciidoc || die
39 mmake || die
40 }