guix-patches
[Top][All Lists]
Advanced

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

[bug#68813] [core-updates PATCH 05/20] gnu: Add pkgconf-as-pkg-config.


From: Maxim Cournoyer
Subject: [bug#68813] [core-updates PATCH 05/20] gnu: Add pkgconf-as-pkg-config.
Date: Thu, 22 Feb 2024 11:10:04 -0500

* gnu/packages/pkg-config.scm (pkgconf-as-pkg-config): New variable.

Change-Id: Ica85d2c248817fdf4756680cd94b0380e4a2b01f
---

 gnu/packages/pkg-config.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/pkg-config.scm b/gnu/packages/pkg-config.scm
index 2f07bdab9d..a5459dd2a8 100644
--- a/gnu/packages/pkg-config.scm
+++ b/gnu/packages/pkg-config.scm
@@ -198,3 +198,31 @@ (define-public pkgconf
 such as compilers and IDEs to discover and use libraries configured by
 pkgconf.")
     (license isc)))
+
+(define-public pkgconf-as-pkg-config
+  (package/inherit pkgconf
+    (name "pkgconf-as-pkg-config")
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:tests? #f
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure)
+          (delete 'build)
+          (replace 'install
+            (lambda* (#:key inputs #:allow-other-keys)
+              (let ((pkgconf (search-input-file inputs "bin/pkgconf")))
+                (mkdir-p (string-append #$output "/bin"))
+                (symlink pkgconf (string-append #$output "/bin/pkg-config"))
+
+                ;; Also make 'pkg.m4' available, some packages might expect it.
+                (mkdir-p (string-append #$output "/share"))
+                ;; XXX: Using '#$(this-package-input "pkgconf") here would
+                ;; create a cycle.
+                (symlink (string-append (dirname (dirname pkgconf))
+                                        "/share/aclocal")
+                         (string-append #$output "/share/aclocal"))))))))
+    (native-inputs '())
+    (inputs (list pkgconf))
+    (propagated-inputs '())))
-- 
2.41.0






reply via email to

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