The GPGME package is a C language library that allows to add support for cryptography to a program. It is designed to make access to public key crypto engines like GnuPG or GpgSM easier for applications. GPGME provides a high-level crypto API for encryption, decryption, signing, signature verification and key management.
This package is known to build and work properly using an LFS-7.0 platform.
Download (FTP): ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.3.1.tar.bz2
Download MD5 sum: 90afa8436ce2b2683c001c824bd22601
Download size: 828 KB
Estimated disk space required: 22 MB
Estimated build time: 0.3 SBU
Libassuan-2.0.2 and libgpg-error-1.10
GnuPG-1.4.11, GnuPG-2.0.18, and Pth-2.0.7
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gpgme
Install GPGME by running the following commands:
./configure --prefix=/usr \ --libexecdir=/usr/lib \ --without-g13 && make
To test the results, issue: make check.
Now, as the root
user:
make install
--libexecdir=/usr/lib
: This
parameter stops the creation of an empty /usr/libexec directory.
--without-g13
: This option merely
prevents a warning about about an un-released development library
during configure.
Last updated on 2011-12-13 20:40:03 +0000