opt/libgcrypt/Pkgfile

23 lines
481 B
Plaintext

# Description: A general purpose cryptographic library based on GnuPG
# URL: http://www.gnupg.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libgpg-error
name=libgcrypt
version=1.9.0
release=1
source=(ftp://ftp.gnupg.org/gcrypt/libgcrypt/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-padlock-support \
--enable-static=yes
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
}