guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: libid3tag: Install pkg-config file.


From: guix-commits
Subject: 01/05: gnu: libid3tag: Install pkg-config file.
Date: Sun, 27 Dec 2020 16:42:44 -0500 (EST)

kkebreau pushed a commit to branch master
in repository guix.

commit 14e68191d204ab9e7f2302902bb891ed03ea0442
Author: Kei Kebreau <kkebreau@posteo.net>
AuthorDate: Sun Aug 2 15:58:45 2020 -0400

    gnu: libid3tag: Install pkg-config file.
    
    * gnu/packages/mp3.scm (libid3tag)[arguments]: Add 'install-pkg-config 
phase.
---
 gnu/packages/mp3.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm
index 4bdbe8b..591bc27 100644
--- a/gnu/packages/mp3.scm
+++ b/gnu/packages/mp3.scm
@@ -106,6 +106,27 @@ This package contains the library.")
              (base32
               "0lb1w883dc46dajbdvnia5870brl5lvnlk7g7y58y9wpg5p4znk3"))))
    (build-system gnu-build-system)
+   (arguments
+    `(#:phases
+      (modify-phases %standard-phases
+        (add-after 'install 'install-pkg-config
+          (lambda* (#:key outputs #:allow-other-keys)
+            (let* ((out (assoc-ref outputs "out"))
+                   (pkg-config-dir (string-append out "/lib/pkgconfig")))
+              (mkdir-p pkg-config-dir)
+              (with-output-to-file (string-append pkg-config-dir "/id3tag.pc")
+                (lambda _
+                  (format #t
+                          "prefix=~@*~a~@
+                           libdir=${prefix}/lib~@
+                           includedir=${prefix}/include~@
+
+                           Name: libid3tag~@
+                           Description:~@
+                           Version: ~a~@
+                           Libs: -L${libdir} -lid3tag -lz~@
+                           Cflags: -I${includedir}~%"
+                          out ,version)))))))))
    (inputs `(("zlib" ,zlib)))
    (synopsis "Library for reading ID3 tags")
    (description



reply via email to

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