2022-04-14 02:46:46 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port='aria2'
|
|
|
|
version='1.36.0'
|
2023-07-10 14:10:29 +03:00
|
|
|
files=(
|
2023-09-02 07:32:27 +03:00
|
|
|
"https://github.com/aria2/aria2/releases/download/release-${version}/aria2-${version}.tar.xz#58d1e7608c12404f0229a3d9a4953d0d00c18040504498b483305bcb3de907a5"
|
2023-07-10 14:10:29 +03:00
|
|
|
)
|
2022-04-14 02:46:46 +03:00
|
|
|
depends=(
|
2023-08-23 22:44:07 +03:00
|
|
|
'libssh2'
|
|
|
|
'libuv'
|
|
|
|
'libxml2'
|
|
|
|
'openssl'
|
|
|
|
'zlib'
|
2022-04-14 02:46:46 +03:00
|
|
|
)
|
|
|
|
useconfigure='true'
|
|
|
|
use_fresh_config_sub='true'
|
2023-08-23 22:44:07 +03:00
|
|
|
config_sub_paths+=(
|
|
|
|
'deps/wslay/config.sub'
|
|
|
|
)
|
2022-04-14 02:46:46 +03:00
|
|
|
configopts+=(
|
2023-08-23 22:44:07 +03:00
|
|
|
'--with-libuv'
|
2022-04-14 02:46:46 +03:00
|
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
2023-08-23 21:52:37 +03:00
|
|
|
'--without-libcares'
|
2023-08-23 22:41:30 +03:00
|
|
|
'--without-sqlite3'
|
2022-04-14 02:46:46 +03:00
|
|
|
)
|