From 3b9af0f37b6a8ea7a0d05809f78accb78a6d8207 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Tue, 1 Apr 2014 18:55:28 -0400 Subject: [PATCH] gnu: bazaar: Install man pages in share/man. * gnu/packages/version-control.scm (bazaar): Add a phase that fixes setup.py to install man pages in share/man. --- gnu/packages/version-control.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index ef08bbe5e8..f63df4a2ff 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2013 Cyril Roelandt ;;; Copyright © 2013, 2014 Ludovic Courtès ;;; Copyright © 2013, 2014 Andreas Enge +;;; Copyright © 2014 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -63,8 +64,14 @@ `(("gettext" ,gnu-gettext))) (arguments `(#:tests? #f ; no test target - #:python ,python-2)) ; Python 3 apparently not yet supported, see + #:python ,python-2 ; Python 3 apparently not yet supported, see ; https://answers.launchpad.net/bzr/+question/229048 + #:phases (alist-cons-after + 'unpack 'fix-mandir + (lambda _ + (substitute* "setup.py" + (("man/man1") "share/man/man1"))) + %standard-phases))) (home-page "https://gnu.org/software/bazaar") (synopsis "Version control system supporting both distributed and centralized workflows") (description