mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
39 lines
1.2 KiB
Bash
Executable file
39 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='gnupg'
|
|
version='2.4.5'
|
|
useconfigure='true'
|
|
use_fresh_config_sub='true'
|
|
config_sub_paths=(
|
|
'build-aux/config.sub'
|
|
)
|
|
files=(
|
|
"https://gnupg.org/ftp/gcrypt/gnupg/gnupg-${version}.tar.bz2#f68f7d75d06cb1635c336d34d844af97436c3f64ea14bcb7c869782f96f44277"
|
|
)
|
|
depends=(
|
|
'libassuan'
|
|
'libgcrypt'
|
|
'libgpg-error'
|
|
'libiconv'
|
|
'libksba'
|
|
'npth'
|
|
'ntbtls'
|
|
)
|
|
|
|
pre_configure() {
|
|
export GPGRT_CONFIG="${SERENITY_INSTALL_ROOT}/usr/local/bin/gpgrt-config"
|
|
export CFLAGS="-L${SERENITY_INSTALL_ROOT}/usr/local/include"
|
|
export LDFLAGS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib -lm -liconv -ldl"
|
|
}
|
|
|
|
configure() {
|
|
run ./configure \
|
|
--host="${SERENITY_ARCH}-pc-serenity" \
|
|
--build="$("${workdir}/build-aux/config.guess")" \
|
|
--with-libgpg-error-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
|
--with-libgcrypt-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
|
--with-ksba-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
|
--with-libassuan-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
|
--with-ntbtls-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
|
--with-npth-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
|
--disable-dirmngr
|
|
}
|