Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Updated openjpeg to 2.5.0 on macOS x86_64 #294

Merged
merged 1 commit into from
May 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ FREETYPE_VERSION=2.12.1
HARFBUZZ_VERSION=4.2.1
LIBPNG_VERSION=1.6.37
JPEGTURBO_VERSION=2.1.3
if [[ -n "$IS_MACOS" ]] && [[ "$PLAT" == "x86_64" ]]; then
OPENJPEG_VERSION=2.4.0
else
OPENJPEG_VERSION=2.5.0
fi
OPENJPEG_VERSION=2.5.0
XZ_VERSION=5.2.5
TIFF_VERSION=4.3.0
LCMS2_VERSION=2.13.1
Expand Down Expand Up @@ -51,6 +47,16 @@ function build_giflib {
fi
}

if [[ -n "$IS_MACOS" ]] && [[ "$PLAT" == "x86_64" ]]; then
function build_openjpeg {
local out_dir=$(fetch_unpack https://github.com/uclouvain/openjpeg/archive/v${OPENJPEG_VERSION}.tar.gz)
(cd $out_dir \
&& cmake -DCMAKE_INSTALL_PREFIX=$BUILD_PREFIX -DCMAKE_INSTALL_NAME_DIR=$BUILD_PREFIX/lib . \
&& make install)
touch openjpeg-stamp
}
fi

function pre_build {
# Any stuff that you need to do before you start building the wheels
# Runs in the root directory of this repository.
Expand Down