mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libdeflate: Use G-expressions.
* gnu/packages/compression.scm (libdeflate)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
0f4353d30a
commit
dc2f6aaa56
1 changed files with 10 additions and 10 deletions
|
@ -2660,16 +2660,16 @@ to their original, binary CD format.")
|
||||||
"16n9232zjavcp5wp17cx0gh2v7gipxpncsha05j3ybajfs7g88jv"))))
|
"16n9232zjavcp5wp17cx0gh2v7gipxpncsha05j3ybajfs7g88jv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
(list #:make-flags
|
||||||
(list (string-append "CC=" ,(cc-for-target))
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(string-append "PREFIX=" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'skip-static-library-installation
|
(add-after 'unpack 'skip-static-library-installation
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("install .*\\$\\(STATIC_LIB\\).*") ""))))
|
(("install .*\\$\\(STATIC_LIB\\).*") ""))))
|
||||||
(delete 'configure))))
|
(delete 'configure)))) ; no configure script
|
||||||
(inputs
|
(inputs
|
||||||
(list zlib))
|
(list zlib))
|
||||||
(home-page "https://github.com/ebiggers/libdeflate")
|
(home-page "https://github.com/ebiggers/libdeflate")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue