Introduction to Libgcrypt
The Libgcrypt package contains a
general purpose crypto library based on the code used in
GnuPG. The library provides a high
level interface to cryptographic building blocks using an
extendable and flexible API.
This package is known to build and work properly using an LFS-6.5
platform.
Package Information
Libgcrypt Dependencies
Required
Libgpg-error-1.7
Optional
Linux Capabilities (libcap)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libgcrypt
Installation of Libgcrypt
Install Libgcrypt by running the
following commands:
./configure --prefix=/usr &&
make
Only info
documentation is shipped in the package tarball. If you wish to
build alternate formats of the documentation, you must have
teTeX-3.0 installed (to build the PDF, PostScript
and chunked HTML docs), then issue the following commands:
make -C doc pdf ps html &&
makeinfo --html --no-split -o doc/gcrypt_nochunks.html doc/gcrypt.texi &&
makeinfo --plaintext -o doc/gcrypt.txt doc/gcrypt.texi
To test the results, issue: make
check.
Now, as the root user:
make install &&
install -v -m644 -D README /usr/share/doc/libgcrypt-1.4.4/README
If you built the additional documentation, install it by issuing
the following commands as the root
user:
install -v -m755 -d /usr/share/doc/libgcrypt-1.4.4/html &&
install -v -m644 doc/gcrypt.html/* \
/usr/share/doc/libgcrypt-1.4.4/html &&
install -v -m644 doc/gcrypt_nochunks.html \
/usr/share/doc/libgcrypt-1.4.4 &&
install -v -m644 doc/gcrypt.{pdf,ps,dvi,txt,texi} \
/usr/share/doc/libgcrypt-1.4.4