me
/
guix
Archived
1
0
Fork 0

gnu: libdeflate: Update to 1.15.

* gnu/packages/compression.scm (libdeflate): Update to 1.15.
[build-system]: Use CMake.
[arguments]: Remove #:make-flags and all custom phases.
Add equivalent #:configure-flags and a custom 'check phase.
master
Tobias Geerinckx-Rice 2022-12-11 01:00:01 +01:00
parent 2ed751715f
commit 885f18d750
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 10 deletions

View File

@ -2695,7 +2695,7 @@ to their original, binary CD format.")
(define-public libdeflate
(package
(name "libdeflate")
(version "1.14")
(version "1.15")
(source (origin
(method git-fetch)
(uri (git-reference
@ -2704,19 +2704,16 @@ to their original, binary CD format.")
(file-name (git-file-name name version))
(sha256
(base32
"09y69mnbv3mprgjp53zvin5zqznqajginrk5b25xmi9y0b83bns8"))))
(build-system gnu-build-system)
"001l1xdc3k1dfjvl3ng480ydz0rnyvlhv54l5mshg2p9v4iz3v09"))))
(build-system cmake-build-system)
(arguments
(list #:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "PREFIX=" #$output))
(list #:configure-flags
#~(list "-DLIBDEFLATE_BUILD_STATIC_LIB=NO")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'skip-static-library-installation
(replace 'check
(lambda _
(substitute* "Makefile"
(("install .*\\$\\(STATIC_LIB\\).*") ""))))
(delete 'configure)))) ; no configure script
(invoke "../source/scripts/run_tests.sh"))))))
(inputs
(list zlib))
(home-page "https://github.com/ebiggers/libdeflate")