[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: html2text: Run ./configure without errors.
From: |
guix-commits |
Subject: |
01/03: gnu: html2text: Run ./configure without errors. |
Date: |
Tue, 27 Apr 2021 08:04:01 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit b0020938e17ac4d7f9f87d9bb7ff2d2dbdd7c33f
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Apr 27 13:54:41 2021 +0200
gnu: html2text: Run ./configure without errors.
* gnu/packages/textutils.scm (html2text)[arguments]: Add a custom
'configure phase. Replace the custom 'fix-paths phase with the
customary #:make-flags equivalent.
---
gnu/packages/textutils.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 398bfc2..0df8399 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1030,13 +1030,15 @@ indentation.
(base32 "0n6pl0nijcn4z3p0dvf3gmvvpjq261pagnk84s9f78c4c55bw5cm"))))
(build-system gnu-build-system)
(arguments
- `(#:phases
+ `(#:make-flags
+ (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+ #:phases
(modify-phases %standard-phases
- (add-after 'unpack 'fix-paths
+ (replace 'configure
+ ;; The configure script is not from autotools and does not accept
+ ;; ‘--style’ options. There is no proper error handling.
(lambda* (#:key outputs #:allow-other-keys)
- (substitute* "Makefile.in"
- (("/usr/local")
- (assoc-ref outputs "out"))))))))
+ (invoke "./configure"))))))
(home-page "https://github.com/grobian/html2text")
(synopsis "HTML to plain text converter")
(description