opt/libgcrypt/Pkgfile
2021-04-20 21:38:02 +10:00

23 lines
478 B
Plaintext

# Description: A general purpose cryptographic library based on GnuPG
# URL: https://www.gnupg.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libgpg-error
name=libgcrypt
version=1.9.3
release=1
source=(https://www.gnupg.org/ftp/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
}