1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02: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:
Maxim Cournoyer 2022-04-01 22:36:56 -04:00
parent a62f0f6d85
commit 322e23e600
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -286,7 +286,7 @@ work with most software requiring Type 1 fonts.")
(build-system cmake-build-system) (build-system cmake-build-system)
(outputs '("out" "bin")) (outputs '("out" "bin"))
(arguments (arguments
`(#:tests? #f ; No target `(#:tests? #f ;no test suite
#:configure-flags #:configure-flags
(list (list
(string-append "-DCMAKE_INSTALL_BINDIR=" (string-append "-DCMAKE_INSTALL_BINDIR="
@ -305,12 +305,11 @@ work with most software requiring Type 1 fonts.")
(lambda _ (lambda _
(substitute* "CMakeLists.txt" (substitute* "CMakeLists.txt"
(("NOT BUILD_SHARED_LIBS") (("NOT BUILD_SHARED_LIBS")
"BUILD_SHARED_LIBS")) "BUILD_SHARED_LIBS")))))))
#t)))))
(native-inputs (native-inputs
(list pkg-config)) (list pkg-config))
(inputs (propagated-inputs
(list brotli)) (list brotli)) ;libwoff2dec.pc requires libbrotlidec
(synopsis "Libraries and tools for WOFF2 font format") (synopsis "Libraries and tools for WOFF2 font format")
(description "WOFF2 provides libraries and tools to handle the Web Open (description "WOFF2 provides libraries and tools to handle the Web Open
Font Format (WOFF).") Font Format (WOFF).")