forked from Bananymous/banan-os
12 lines
287 B
Bash
Executable File
12 lines
287 B
Bash
Executable File
#!/bin/bash ../install.sh
|
|
|
|
NAME='curl'
|
|
VERSION='8.8.0'
|
|
DOWNLOAD_URL="https://curl.se/download/curl-$VERSION.tar.gz#77c0e1cd35ab5b45b659645a93b46d660224d0024f1185e8a95cdb27ae3d787d"
|
|
CONFIGURE_OPTIONS=(
|
|
'--without-ssl'
|
|
'--disable-threaded-resolver'
|
|
'--disable-ipv6'
|
|
'--disable-docs'
|
|
)
|