Package Details: zulucrypt 7.1.0-1

Git Clone URL: https://aur.archlinux.org/zulucrypt.git (read-only, click to copy)
Package Base: zulucrypt
Description: A cli and gui frontend to cryptsetup
Upstream URL: https://mhogomchungu.github.io/zuluCrypt
Keywords: cryptsetup encryption security tcplay truecrypt veracrypt
Licenses: GPL-2.0-or-later
Conflicts: zulucrypt-git
Submitter: salan54
Maintainer: salan54
Last Packager: salan54
Votes: 73
Popularity: 0.006658
First Submitted: 2013-02-03 13:05 (UTC)
Last Updated: 2025-09-19 12:38 (UTC)

Latest Comments

« First ‹ Previous 1 .. 5 6 7 8 9 10 11 12 13 14 Next › Last »

JKAbrams commented on 2015-02-21 21:11 (UTC)

@salan54: Thanks for the quick rely! Ah, base-devel, sorry I did't check that (of course I had it installed too, but something must have goon wrong with my packages as pkg-config was not installed).

salan54 commented on 2015-02-21 21:03 (UTC)

@JKAbrams It looks like you found the problem and the solution ;-) Thanks. - The pkg-config package is part of the group base-devel and, as such, is often already installed for people using AUR. Not sure I have to include it in zulucrypt's dependencies. - For kdeutils-kwallet being renamed kdeutils-kwalletmanager, I will update both PKGBUILD (standard and git version). Thank you very much for pointing me to this change.

JKAbrams commented on 2015-02-21 20:41 (UTC)

As for fixing dependencies, kdeutils-kwallet has been renamed kdeutils-kwalletmanager (likewise for -git version).

JKAbrams commented on 2015-02-21 20:36 (UTC)

Found the solution: need to install the package named 'pkg-config', add to build dependency and all is well :)

JKAbrams commented on 2015-02-21 20:18 (UTC)

If I override 'could not find cryptsetup package' it starts building but stops at: zulucrypt/src/zuluCrypt-4.7.4/zuluCrypt-cli/lib/open_luks.c:28:34: fatal error: luks_external_header.h: No such file or directory #include "luks_external_header.h" (By override I mean commenting line 47-49, 57 and 59-61, 67 in CMakeLists.txt)

JKAbrams commented on 2015-02-21 20:12 (UTC)

-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) CMake Error at CMakeLists.txt:48 (message): ERROR: could not find blkid package I do have blkid at /usr/bin/blkid If I override this I get: -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) CMake Error at CMakeLists.txt:60 (message): ERROR: could not find cryptsetup package and so forth.

gumper commented on 2015-01-06 23:23 (UTC)

No problems with the new PKGBUILD. Thanks for the fix!

salan54 commented on 2015-01-06 11:57 (UTC)

I did the PKGBUILD modification suggested by mhogomchungu. @gumper, please give it a try and let us know if that works for you. Thanks @mhogomchungu, @leeroyke and an Happy New Year to all of you, zulucrypt's users !

mhogomchungu commented on 2015-01-05 18:50 (UTC)

Best solution is to change: cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DNOKDE=true -DCMAKE_BUILD_TYPE=release . .. to: cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DLIB_SUFFIX=lib -DNOKDE=true -DCMAKE_BUILD_TYPE=release . .. the "-DLIB_SUFFIX=" option controls if the suffix should be "lib64"(default value in 64 bit systems) or "lib"(default value in 32 bit systems) or any other value a user prefers(some distributions uses something like "x86-64" suffix).

leeroyke commented on 2015-01-05 15:49 (UTC)

Since the update pacman 4.2 /usr/lib64 is no longer allowed. we must correct the package to use /usr/lib/ and not /usr/lib64/ Modify PKGBUILD why this : prepare() { cd "${srcdir}/${_altpkgname}-${pkgver}" sed -i "s|lib64|lib|g" CMakeLists.txt zuluCrypt-gui/lxqt_wallet/frontend/CMakeLists.txt } Placed before bluid () function I had the same problem too, but with this change it installs without problem. Sorry for my English. I