diff --git a/project/bundles/3rdparty/ext_liblqr/CMakeLists.txt b/project/bundles/3rdparty/ext_liblqr/CMakeLists.txt index a81ef29864..446e48a985 100644 --- a/project/bundles/3rdparty/ext_liblqr/CMakeLists.txt +++ b/project/bundles/3rdparty/ext_liblqr/CMakeLists.txt @@ -1,22 +1,27 @@ # Script to build liblqr for digiKam bundle. # # Copyright (c) 2015-2019, Gilles Caulier, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # SET(EXTPREFIX_liblqr "${EXTPREFIX}") ExternalProject_Add(ext_liblqr DOWNLOAD_DIR ${EXTERNALS_DOWNLOAD_DIR} - URL https://github.com/carlobaldassi/liblqr/archive/v0.4.2.tar.gz - URL_MD5 f7b4ecddd8a038f057e236347fd7767c + +# URL https://github.com/carlobaldassi/liblqr/archive/v0.4.2.tar.gz +# URL_MD5 f7b4ecddd8a038f057e236347fd7767c + + GIT_REPOSITORY https://github.com/carlobaldassi/liblqr.git +# PATCH_COMMAND ${PATCH_COMMAND} -p1 -i ${CMAKE_CURRENT_SOURCE_DIR}/liblqr-appimage.patch + INSTALL_DIR ${EXTPREFIX_liblqr} CONFIGURE_COMMAND /configure -prefix ${EXTPREFIX_liblqr} UPDATE_COMMAND "" BUILD_IN_SOURCE 1 ALWAYS 0 )