parent
e392e8fd9f
commit
4ea334550e
@ -0,0 +1,29 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
./configure \ |
||||
--prefix=${INSTALL_DIR} \ |
||||
--host=${TARGET} \ |
||||
--with-sysroot=${SYSROOT_PATH} \ |
||||
--disable-shared \ |
||||
--enable-static \ |
||||
--with-pic \ |
||||
--with-zlib \ |
||||
--without-bzip2 \ |
||||
--without-png \ |
||||
--without-harfbuzz \ |
||||
--without-brotli \ |
||||
--without-old-mac-fonts \ |
||||
--without-fsspec \ |
||||
--without-fsref \ |
||||
--without-quickdraw-toolbox \ |
||||
--without-quickdraw-carbon \ |
||||
--without-ats \ |
||||
CC=${FAM_CC} \ |
||||
AR=${FAM_AR} \ |
||||
RANLIB=${FAM_RANLIB} || exit 1 |
||||
|
||||
export FFMPEG_EXTRA_LD_FLAGS="${FFMPEG_EXTRA_LD_FLAGS} -lz" |
||||
|
||||
${MAKE_EXECUTABLE} clean |
||||
${MAKE_EXECUTABLE} -j${HOST_NPROC} |
||||
${MAKE_EXECUTABLE} install |
@ -0,0 +1,9 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
source ${SCRIPTS_DIR}/common-functions.sh |
||||
|
||||
FREETYPE_VERSION=2.10.2 |
||||
|
||||
downloadTarArchive \ |
||||
"libfreetype" \ |
||||
"https://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPE_VERSION}.tar.gz" \ |
Loading…
Reference in new issue