gnu: sicp: Build as a single info file.
Fixes <https://issues.guix.gnu.org/63565>. * gnu/packages/scheme.scm (sicp) [arguments]: Use '--no-split' makeinfo option in build phase. Reported-by: Andrey Mitrofanov <abme@rambler.ru>
This commit is contained in:
parent
03b453cfe5
commit
321ae25a26
1 changed files with 2 additions and 1 deletions
|
@ -639,7 +639,8 @@ threads.")
|
||||||
""))))
|
""))))
|
||||||
(add-before 'install 'build
|
(add-before 'install 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "makeinfo" "--output=sicp.info"
|
(invoke "makeinfo" "--no-split"
|
||||||
|
"--output=sicp.info"
|
||||||
"sicp-pocket.texi"))))))
|
"sicp-pocket.texi"))))))
|
||||||
(home-page "https://sarabander.github.io/sicp")
|
(home-page "https://sarabander.github.io/sicp")
|
||||||
(synopsis "Structure and Interpretation of Computer Programs")
|
(synopsis "Structure and Interpretation of Computer Programs")
|
||||||
|
|
Reference in a new issue