GPGME-1.4.3

Introduction to GPGME

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.5 platform.

Package Information

GPGME Dependencies

Required

Libassuan-2.1.1

Optional

GnuPG-2.0.22 (used during the testsuite)

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gpgme

Installation of GPGME

Install GPGME by running the following commands:

./configure --prefix=/usr \
--disable-fd-passing      \
--disable-gpgsm-test      &&
make

To test the results, issue: make check.

Now, as the root user:

make install

Command Explanations

--disable-fd-passing: This option disables a problem causing a hang for some operations on some systems.

--disable-gpgsm-test: This option disables a test with gpgsm in some systems breaking make.

Contents

Installed Program: gpgme-config
Installed Libraries: libgpgme-pthread.so and libgpgme.so
Installed Directory: /usr/share/common-lisp/source/gpgme

Short Descriptions

libgpgme-pthread.so

contains the GPGME API functions for applications using pthread.

libgpgme.so

contains the GPGME API functions.

Last updated on 2014-02-22 07:13:35 -0800