author | Krista Bennett <krista@pep-project.org> |
Fri, 09 Mar 2018 03:18:15 +0100 | |
branch | ENGINE-400 |
changeset 2558 | d2f67eaa8501 |
parent 1517 | f29830f1c407 |
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