2024-08-05 15:14:09 +03:00
|
|
|
#!/bin/bash ../install.sh
|
|
|
|
|
|
|
|
NAME='curl'
|
|
|
|
VERSION='8.8.0'
|
|
|
|
DOWNLOAD_URL="https://curl.se/download/curl-$VERSION.tar.gz#77c0e1cd35ab5b45b659645a93b46d660224d0024f1185e8a95cdb27ae3d787d"
|
2024-08-22 14:27:11 +03:00
|
|
|
DEPENDENCIES=('ca-certificates' 'openssl' 'zlib')
|
2024-08-05 15:14:09 +03:00
|
|
|
CONFIGURE_OPTIONS=(
|
|
|
|
'--disable-threaded-resolver'
|
|
|
|
'--disable-ipv6'
|
|
|
|
'--disable-docs'
|
2024-08-22 14:27:11 +03:00
|
|
|
'--with-openssl'
|
|
|
|
'--with-zlib'
|
|
|
|
'--with-random=/dev/random'
|
|
|
|
'--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt'
|
|
|
|
'--without-ca-path'
|
2024-08-05 15:14:09 +03:00
|
|
|
)
|