Merge pull request #92 from radarhere/freetype

Simplified custom freetype build
This commit is contained in:
Hugo 2018-08-04 09:30:37 +03:00 committed by GitHub
commit 5b306a3741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,11 +35,7 @@ function pre_build {
build_libwebp
if [ -n "$IS_OSX" ]; then
# Custom freetype build
local ft_name_ver=freetype-${FREETYPE_VERSION}
fetch_unpack http://download.savannah.gnu.org/releases/freetype/${ft_name_ver}.tar.gz
(cd $ft_name_ver \
&& ./configure --prefix=$BUILD_PREFIX "--with-harfbuzz=no" \
&& make && make install)
build_simple freetype $FREETYPE_VERSION https://download.savannah.gnu.org/releases/freetype tar.gz --with-harfbuzz=no
else
build_freetype
fi