├── LICENSE └── build.sh /LICENSE: -------------------------------------------------------------------------------- 1 | CURL LICENSE 2 | 3 | Permission to use, copy, modify, and distribute this software for any purpose 4 | with or without fee is hereby granted, provided that the above copyright notice 5 | and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 8 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 9 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT 10 | SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 11 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 12 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 13 | SOFTWARE. 14 | 15 | Except as contained in this notice, the name of a copyright holder shall not be 16 | used in advertising or otherwise to promote the sale, use or other dealings in 17 | this Software without prior written authorization of the copyright holder. 18 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | VERSION=LATEST 5 | #If you prefer a specific version you can set it specifically 6 | #VERSION=7.66.0 7 | GPG_KEY_URL="https://daniel.haxx.se/mykey.asc" 8 | GPG_KEY_PATH="/out/curl-gpg.pub" 9 | #Do not escape the above variables in script below 10 | #change last argument to -xeus for help with debugging 11 | cat <