"vscode:/vscode.git/clone" did not exist on "c88efea2b853ae2d45554cafca82dcdfa635e779"
Commit d4c22053 authored by xoviat's avatar xoviat Committed by GitHub
Browse files

MAINT: use the new arguments in some places

parent 91a600e4
...@@ -170,16 +170,12 @@ function build_xz { ...@@ -170,16 +170,12 @@ function build_xz {
} }
function build_libwebp { function build_libwebp {
if [ -e libwebp-stamp ]; then return; fi
build_libpng build_libpng
build_tiff build_tiff
build_giflib build_giflib
fetch_unpack https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${LIBWEBP_VERSION}.tar.gz build_simple libwebp $LIBWEBP_VERSION \
(cd libwebp-${LIBWEBP_VERSION} && \ https://storage.googleapis.com/downloads.webmproject.org/releases/webp/ \
./configure --enable-libwebpmux --enable-libwebpdemux --prefix=$BUILD_PREFIX \ --enable-libwebpmux --enable-libwebpdemux
&& make \
&& make install)
touch libwebp-stamp
} }
function build_freetype { function build_freetype {
...@@ -194,15 +190,10 @@ function build_libyaml { ...@@ -194,15 +190,10 @@ function build_libyaml {
function build_szip { function build_szip {
# Build szip without encoding (patent restrictions) # Build szip without encoding (patent restrictions)
if [ -e szip-stamp ]; then return; fi
build_zlib build_zlib
local szip_url=https://www.hdfgroup.org/ftp/lib-external/szip/ build_simple szip $SZIP_VERSION \
fetch_unpack ${szip_url}/$SZIP_VERSION/src/szip-$SZIP_VERSION.tar.gz https://www.hdfgroup.org/ftp/lib-external/szip/ \
(cd szip-$SZIP_VERSION \ --enable-encoding=no
&& ./configure --enable-encoding=no --prefix=$BUILD_PREFIX \
&& make \
&& make install)
touch szip-stamp
} }
function build_hdf5 { function build_hdf5 {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment