1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 01:47:43 +00:00
serenity/Ports/libgpg-error/package.sh

23 lines
553 B
Bash
Raw Normal View History

2021-04-14 02:32:34 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
port='libgpg-error'
version='1.45'
2023-07-10 11:10:29 +00:00
files=(
"https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-${version}.tar.bz2#570f8ee4fb4bff7b7495cff920c275002aea2147e9a1d220c068213267f80a26"
2023-07-10 11:10:29 +00:00
)
useconfigure='true'
use_fresh_config_sub='true'
config_sub_paths=(
'build-aux/config.sub'
)
depends=(
'gettext'
)
2021-04-14 02:32:34 +00:00
configure() {
run ./configure \
--host="${SERENITY_ARCH}-pc-serenity" \
--build="$("${workdir}/build-aux/config.guess")" \
--disable-tests \
--disable-threads
2021-04-14 02:32:34 +00:00
}