Hi,
I'm struggeling building the Osimis Webviewer 1.4.0 on CentOS 8.
(Cant't use container in that scenario, need to build it by myself.)
Basically I'm doing the following:
git clone --depth 1 --branch 1.4.0
https://bitbucket.org/osimis/osimis-webviewer-plugin.git
cd osimis-webviewer-plugin
git checkout 1.4.0
git config --global core.abbrev 8
VERSION_FULL=$(git describe --tags --long --dirty=-dirty)
mkdir backend/build
cd backend/build
%{__build_env} "cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DORTHANC_FRAMEWORK_VERSION=1.5.0 \
-DORTHANC_FRAMEWORK_SOURCE=web \
-DVIEWER_VERSION_FULL=$VERSION_FULL"
The error always is:
CMake Error at
build/Orthanc-1.5.0/Resources/CMake/DownloadPackage.cmake:182 (message):
The package was not uncompressed at the proper location. Check the CMake
instructions.
Call Stack (most recent call first):
WebViewerPlugin/WebViewerPlugin.cmake:76 (DownloadPackage)
CMakeLists.txt:54 (include)
I tried also to install the orthanc using ORTHANC_FRAMEWORK_SOURCE=hg
with the same result. Same result I get on Ubuntu too. (Also with
Webviewer 1.3.1.)
Any ideas how to solve this?
kind regards,
tf