mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
17 lines
562 B
Bash
Executable File
17 lines
562 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=libgcrypt
|
|
version=1.9.2
|
|
useconfigure=true
|
|
configopts="--with-libgpg-error-prefix=${SERENITY_BUILD_DIR}/Root/usr/local"
|
|
files="https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${version}.tar.bz2 libgcrypt-${version}.tar.bz2 00121b05e1ff4cc85a4a6503e0a7d9fb"
|
|
auth_type=md5
|
|
|
|
pre_configure() {
|
|
export gcry_cv_gcc_has_f_visibility=no
|
|
export ac_cv_lib_pthread_pthread_create=no
|
|
}
|
|
|
|
configure() {
|
|
run ./configure --host="${SERENITY_ARCH}-pc-serenity" --build="$($workdir/build-aux/config.guess)" $configopts
|
|
}
|