mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
17 lines
318 B
Plaintext
Executable File
17 lines
318 B
Plaintext
Executable File
# description : A general purpose crypto library based on the code used in GnuPG
|
|
# depends : libgpg-error
|
|
|
|
name=libgcrypt
|
|
version=1.10.3
|
|
release=1
|
|
source="https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-$version.tar.bz2"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|