ladybird/Ports/aria2/package.sh
Tim Ledbetter 87c17c9bb9 Ports/aria2: Explicitly disable Firefox/Chromium cookie support
Previously, this would only be enabled if the `sqlite` port was
already installed. This change explicitly disables the feature, as it
isn't that useful on SerenityOS. This ensures a consistent build
regardless of whether the `sqlite` port is installed or not.
2023-08-24 13:16:58 +02:00

22 lines
545 B
Bash
Executable file

#!/usr/bin/env -S bash ../.port_include.sh
port='aria2'
version='1.36.0'
files=(
"https://github.com/aria2/aria2/releases/download/release-${version}/aria2-${version}.tar.xz 58d1e7608c12404f0229a3d9a4953d0d00c18040504498b483305bcb3de907a5"
)
depends=(
"libssh2"
"libxml2"
"openssl"
"zlib"
"libuv"
)
useconfigure='true'
use_fresh_config_sub='true'
config_sub_paths+=("deps/wslay/config.sub")
configopts+=(
"--with-libuv"
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
'--without-libcares'
'--without-sqlite3'
)