serenity/Ports/libgcrypt/package.sh
2024-03-29 17:00:34 +01:00

26 lines
693 B
Bash
Executable file

#!/usr/bin/env -S bash ../.port_include.sh
port='libgcrypt'
version='1.10.3'
useconfigure='true'
use_fresh_config_sub='true'
config_sub_paths=(
'build-aux/config.sub'
)
depends=(
'libgpg-error'
)
files=(
"https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${version}.tar.bz2#8b0870897ac5ac67ded568dcfadf45969cfa8a6beb0fd60af2a9eadc2a3272aa"
)
pre_configure() {
export ac_cv_lib_pthread_pthread_create='no'
}
configure() {
run ./configure \
--host="${SERENITY_ARCH}-pc-serenity" \
--build="$("${workdir}/build-aux/config.guess")" \
--with-libgpg-error-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
--with-sysroot="${SERENITY_INSTALL_ROOT}"
}