2021-04-14 05:32:34 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2022-06-03 17:44:21 +03:00
|
|
|
port='libgpg-error'
|
|
|
|
version='1.45'
|
|
|
|
files="https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-${version}.tar.bz2 libgpg-error-${version}.tar.bz2 570f8ee4fb4bff7b7495cff920c275002aea2147e9a1d220c068213267f80a26"
|
|
|
|
auth_type='sha256'
|
|
|
|
useconfigure='true'
|
|
|
|
use_fresh_config_sub='true'
|
2022-05-25 13:51:13 +03:00
|
|
|
config_sub_paths=("build-aux/config.sub")
|
2021-09-27 01:16:18 +03:00
|
|
|
depends=("gettext")
|
|
|
|
configopts=("--disable-tests" "--disable-threads")
|
2021-04-14 05:32:34 +03:00
|
|
|
|
|
|
|
configure() {
|
2022-06-03 17:44:21 +03:00
|
|
|
run ./configure --host="${SERENITY_ARCH}-pc-serenity" --build="$(${workdir}/build-aux/config.guess)" "${configopts[@]}"
|
2021-04-14 05:32:34 +03:00
|
|
|
}
|