curl 7.73.0

This commit is contained in:
Travis Burtrum 2020-10-14 19:54:40 -04:00
parent e60027e1ac
commit 0f5d78bd33
2 changed files with 7 additions and 7 deletions

View File

@ -4,12 +4,12 @@
These are a couple simple scripts to build a fully static curl binary using alpine linux docker containers. Currently it is a featureful build with OpenSSL, libssh2, nghttp2, and zlib, supporting most protocols. Tweak configure options in [build.sh](build.sh#L50) if you need something else (and/or suggest or PR).
Grab the latest release (curl 7.72.0) from one of these links, by CPU architecture:
- [curl-amd64](https://github.com/moparisthebest/static-curl/releases/download/v7.72.0/curl-amd64)
- [curl-i386](https://github.com/moparisthebest/static-curl/releases/download/v7.72.0/curl-i386)
- [curl-aarch64](https://github.com/moparisthebest/static-curl/releases/download/v7.72.0/curl-aarch64)
- [curl-armv7](https://github.com/moparisthebest/static-curl/releases/download/v7.72.0/curl-armv7)
- [curl-ppc64le](https://github.com/moparisthebest/static-curl/releases/download/v7.72.0/curl-ppc64le)
Grab the latest release (curl 7.73.0) from one of these links, by CPU architecture:
- [curl-amd64](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-amd64)
- [curl-i386](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-i386)
- [curl-aarch64](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-aarch64)
- [curl-armv7](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-armv7)
- [curl-ppc64le](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-ppc64le)
Static binaries for windows are provided directly by [curl](https://curl.haxx.se/windows/) itself.

View File

@ -6,7 +6,7 @@
# docker run --rm -v $(pwd):/tmp i386/alpine /tmp/build.sh
# docker run --rm -v $(pwd):/tmp ALPINE_IMAGE_HERE /tmp/build.sh
CURL_VERSION='7.72.0'
CURL_VERSION='7.73.0'
[ "$1" != ""] && CURL_VERSION="$1"