Skip to content

Commit

Permalink
- added wget to requirements
Browse files Browse the repository at this point in the history
- all downloads with wget
  • Loading branch information
damaex committed Oct 10, 2019
1 parent 168c721 commit 474aaa1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ architectures: `i386`, `x86_64`, `armv7`, `armv7s`, `arm64`, `arm64e`
## requirements
- XCode
- cmake
- wget

## build
```bash
Expand Down
2 changes: 1 addition & 1 deletion openssl/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ mkdir -p "${CURRENTPATH}/build/lib"

if [ ! -e ${OPENSSL_VERSION}.tar.gz ]; then
echo "Downloading ${OPENSSL_VERSION}.tar.gz"
curl -LO https://www.openssl.org/source/${OPENSSL_VERSION}.tar.gz
wget https://www.openssl.org/source/${OPENSSL_VERSION}.tar.gz
else
echo "Using ${OPENSSL_VERSION}.tar.gz"
fi
Expand Down
2 changes: 1 addition & 1 deletion opus/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ esac
set -e
if [ ! -e opus-${VERSION}.tar.gz ]; then
echo "Downloading opus-${VERSION}.tar.gz"
curl -O https://archive.mozilla.org/pub/opus/opus-${VERSION}.tar.gz
wget https://archive.mozilla.org/pub/opus/opus-${VERSION}.tar.gz
else
echo "Using opus-${VERSION}.tar.gz"
fi
Expand Down
2 changes: 1 addition & 1 deletion zip/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ esac
set -e
if [ ! -e zip-${VERSION}.tar.gz ]; then
echo "Downloading zip-${VERSION}.tar.gz"
curl -O https://libzip.org/download/libzip-${VERSION}.tar.gz
wget https://libzip.org/download/libzip-${VERSION}.tar.gz
else
echo "Using opus-${VERSION}.tar.gz"
fi
Expand Down

0 comments on commit 474aaa1

Please sign in to comment.