Skip to content

Commit

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

## build
```bash
Expand Down
2 changes: 1 addition & 1 deletion haru/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ esac
set -e
if [ ! -e png-${VERSION}.tar.gz ]; then
echo "Downloading libharu-RELEASE_${VERSION}.tar.gz"
wget https://github.com/libharu/libharu/archive/RELEASE_${VERSION}.tar.gz
curl -O -L -s https://github.com/libharu/libharu/archive/RELEASE_${VERSION}.tar.gz
else
echo "Using libharu-RELEASE_${VERSION}.tar.gz"
fi
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"
wget https://www.openssl.org/source/${OPENSSL_VERSION}.tar.gz
curl -O -L -s 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"
wget https://archive.mozilla.org/pub/opus/opus-${VERSION}.tar.gz
curl -O -L -s 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 png/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ esac
set -e
if [ ! -e png-${VERSION}.tar.gz ]; then
echo "Downloading png-${VERSION}.tar.gz"
wget https://downloads.sourceforge.net/project/libpng/libpng16/${VERSION}/libpng-${VERSION}.tar.gz
curl -O -L -s https://downloads.sourceforge.net/project/libpng/libpng16/${VERSION}/libpng-${VERSION}.tar.gz
else
echo "Using png-${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"
wget https://libzip.org/download/libzip-${VERSION}.tar.gz
curl -O -L -s https://libzip.org/download/libzip-${VERSION}.tar.gz
else
echo "Using opus-${VERSION}.tar.gz"
fi
Expand Down

0 comments on commit 0efd2f6

Please sign in to comment.