[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/08: gnu: zsh: Build and install info pages.
From: |
guix-commits |
Subject: |
04/08: gnu: zsh: Build and install info pages. |
Date: |
Fri, 29 Apr 2022 12:09:39 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 606ba144803df497bc71444408feb990001314f6
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Mon Apr 25 09:40:02 2022 +0300
gnu: zsh: Build and install info pages.
* gnu/packages/shells.scm (zsh)[arguments]: Add 'make-info' and
'install-info' phases.
[native-inputs]: Add TEXINFO.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/shells.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 3a48bc7dbf..00a0ef363d 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2022 Andrew Tropin <andrew@trop.in>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -64,6 +65,7 @@
#:use-module (gnu packages tls)
#:use-module (gnu packages version-control)
#:use-module (gnu packages xorg)
+ #:use-module (gnu packages texinfo)
#:use-module (guix build-system cargo)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
@@ -521,9 +523,12 @@ history mechanism, job control and a C-like syntax.")
(substitute* "Test/A01grammar.ztst"
(("command -pv") "command -v")
(("command -p") "command ")
- (("'command' -p") "'command' "))
- #t)))))
- (native-inputs (list autoconf))
+ (("'command' -p") "'command' "))))
+ (add-after 'build 'make-info
+ (lambda _ (invoke "make" "info")))
+ (add-after 'build 'install-info
+ (lambda _ (invoke "make" "install.info"))))))
+ (native-inputs (list autoconf texinfo))
(inputs (list ncurses pcre perl))
(synopsis "Powerful shell for interactive use and scripting")
(description "The Z shell (zsh) is a Unix shell that can be used
- branch master updated (653eef9b41 -> c1719a0adf), guix-commits, 2022/04/29
- 01/08: services: Add missing 'description' fields., guix-commits, 2022/04/29
- 03/08: gnu: lensfun: Update to 0.3.3., guix-commits, 2022/04/29
- 02/08: home: shells: Migrate fish to xdg-configuration-files., guix-commits, 2022/04/29
- 04/08: gnu: zsh: Build and install info pages.,
guix-commits <=
- 06/08: gnu: Add python-flatten-json., guix-commits, 2022/04/29
- 05/08: gnu: Add envytools., guix-commits, 2022/04/29
- 07/08: tests: Avoid starting services to check whether they're running., guix-commits, 2022/04/29
- 08/08: publish: Send uncached narinfo replies from the main thread., guix-commits, 2022/04/29