mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: woff2: Propagate brotli.
* gnu/packages/fontutils.scm (woff2)[phases]: Delete trailing #t. [inputs]: Move brotli to ... [propagated-inputs]: ... here.
This commit is contained in:
parent
a62f0f6d85
commit
322e23e600
1 changed files with 4 additions and 5 deletions
|
@ -286,7 +286,7 @@ (define-public woff2
|
|||
(build-system cmake-build-system)
|
||||
(outputs '("out" "bin"))
|
||||
(arguments
|
||||
`(#:tests? #f ; No target
|
||||
`(#:tests? #f ;no test suite
|
||||
#:configure-flags
|
||||
(list
|
||||
(string-append "-DCMAKE_INSTALL_BINDIR="
|
||||
|
@ -305,12 +305,11 @@ (define-public woff2
|
|||
(lambda _
|
||||
(substitute* "CMakeLists.txt"
|
||||
(("NOT BUILD_SHARED_LIBS")
|
||||
"BUILD_SHARED_LIBS"))
|
||||
#t)))))
|
||||
"BUILD_SHARED_LIBS")))))))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(inputs
|
||||
(list brotli))
|
||||
(propagated-inputs
|
||||
(list brotli)) ;libwoff2dec.pc requires libbrotlidec
|
||||
(synopsis "Libraries and tools for WOFF2 font format")
|
||||
(description "WOFF2 provides libraries and tools to handle the Web Open
|
||||
Font Format (WOFF).")
|
||||
|
|
Loading…
Reference in a new issue