gnu: opencolorio: Fix cmake file.

* gnu/packages/image-processing.scm (opencolorio)[arguments]: Add
fix-OpenColorIOConfig phase.

Change-Id: I317870801f77dc59bcd07b0d11a750bbbb63b327
This commit is contained in:
Zheng Junjie 2024-07-12 11:23:34 +08:00 committed by Ludovic Courtès
parent dc625762d5
commit 65de6fc659
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -276,7 +276,18 @@ (define-public opencolorio
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
;; XXX: GPU tests are failing. ;; XXX: GPU tests are failing.
(list #:configure-flags #~(list "-DOCIO_BUILD_GPU_TESTS=false"))) (list #:configure-flags #~(list "-DOCIO_BUILD_GPU_TESTS=false")
#:phases #~(modify-phases %standard-phases
(add-after 'install 'fix-OpenColorIOConfig
(lambda _
;; Work around a CMake Zlib-detection bug:
;; https://gitlab.kitware.com/cmake/cmake/-/issues/25200
;; make OpenColorIOConfig.cmake is a normal cmake file
(substitute*
(string-append #$output
"/lib/cmake/OpenColorIO/OpenColorIOConfig.cmake")
(("\\.#define ZLIB_VERSION \"1\\.3\"")
"")))))))
(native-inputs (native-inputs
;; XXX: OCIO has unit tests for OpenShadingLanguage, but they fail. ;; XXX: OCIO has unit tests for OpenShadingLanguage, but they fail.
;; They also require OIIO, but OCIO is an optional dependency to it. ;; They also require OIIO, but OCIO is an optional dependency to it.