guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: libconfig: Replace config script helpers.


From: guix-commits
Subject: 05/05: gnu: libconfig: Replace config script helpers.
Date: Mon, 10 Apr 2023 16:24:09 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 1130a5f713a0f9235d921c6aa8e49afc8b2a4db2
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Apr 10 23:19:44 2023 +0300

    gnu: libconfig: Replace config script helpers.
    
    * gnu/packages/textutils.scm (libconfig)[arguments]: Add phase to
    replace config.guess, config.sub.
    [native-inputs]: Add config.
---
 gnu/packages/textutils.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index fb8bc7e868..d7cb217e17 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2015 Roel Janssen <roel@gnu.org>
 ;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
-;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2018, 2019, 2020, 2023 Efraim Flashner 
<efraim@flashner.co.il>
 ;;; Copyright © 2016 Nikita <nikita@n0.is>
 ;;; Copyright © 2016, 2020 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
@@ -527,6 +527,20 @@ character-by-character.
                (base32
                 "1rqynfxl1zxwk4b42sniz9xlw285aidcrsfih51p8dy0rbb6clal"))))
     (build-system gnu-build-system)
+    (arguments
+     (list
+       #:phases
+       #~(modify-phases %standard-phases
+           (add-after 'unpack 'update-config-scripts
+             (lambda* (#:key native-inputs inputs #:allow-other-keys)
+               (for-each (lambda (file)
+                           (install-file
+                             (search-input-file
+                               (or native-inputs inputs)
+                               (string-append "/bin/" file)) "aux-build"))
+                         '("config.guess" "config.sub")))))))
+    (native-inputs
+     (list config))
     (synopsis "C/C++ configuration file library")
     (description
      "Libconfig is a simple library for manipulating structured configuration



reply via email to

[Prev in Thread] Current Thread [Next in Thread]