author | Krista 'DarthMama' Bennett <krista@pep.foundation> |
Wed, 06 Feb 2019 07:17:26 +0100 | |
branch | sync |
changeset 3270 | d8aea79654c3 |
parent 3121 | f33a2ae77177 |
permissions | -rw-r--r-- |
1 #!/bin/bash
3 # This file is under GNU General Public License 3.0
4 # see LICENSE.txt
6 #
7 # Invoke with `sh build.sh`
8 #
10 set -e
12 rm -f libcurl.a
13 rm -fr curl
15 wget https://curl.haxx.se/download/curl-7.48.0.tar.gz
16 gpg2 --verify curl-7.48.0.tar.gz.asc
17 tar xf curl-7.48.0.tar.gz
18 pushd curl-7.48.0
19 bash ../build_libcurl_dist.sh
20 popd
21 mv libcurl-ios-dist/lib/libcurl.a .
23 #exit 1
25 mv libcurl-ios-dist/include/curl .
26 rm -fr libcurl-ios-dist/
27 rm -fr curl-7.48.0
28 rm curl-7.48.0.tar.gz