me
/
guix
Archived
1
0
Fork 0

gnu: newsboat: Only build documentation on supported systems.

* gnu/packages/syndication.scm (newsboat)[inputs]: Only use asciidoctor
on supported platforms.
[arguments]: When asciidoctor isn't present add a phase to skip building
the documentation.
master
Efraim Flashner 2022-11-06 11:14:58 +02:00
parent 072fd1124a
commit 56255c3e81
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 13 additions and 1 deletions

View File

@ -238,7 +238,10 @@ cards.")
("openssl" ,openssl)
("pkg-config" ,pkg-config)
;; For building documentation.
("asciidoctor" ,ruby-asciidoctor)))
,@(if (member (%current-system)
(package-transitive-supported-systems ruby-asciidoctor))
`(("asciidoctor" ,ruby-asciidoctor))
`())))
(inputs
(list curl
json-c
@ -277,6 +280,15 @@ cards.")
("rust-section-testing" ,rust-section-testing-0.0))
#:phases
(modify-phases %standard-phases
,@(if (not (assoc-ref inputs "asciidoctor"))
`((add-after 'unpack 'dont-use-asciidoctor
(lambda _
(substitute* "config.sh"
((".*asciidoctor.*") ""))
(substitute* "Makefile"
(("^doc:.*") "doc:\n")
(("install-podboat install-docs") "install-podboat")))))
'())
(add-after 'configure 'dont-vendor-self
(lambda* (#:key vendor-dir #:allow-other-keys)
;; Don't keep the whole tarball in the vendor directory