emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#45150: closed ([PATCH 1/5] gnu: libid3tag: Install pkg-config file.)


From: GNU bug Tracking System
Subject: bug#45150: closed ([PATCH 1/5] gnu: libid3tag: Install pkg-config file.)
Date: Sun, 27 Dec 2020 22:05:02 +0000

Your message dated Sun, 27 Dec 2020 17:04:29 -0500
with message-id <87v9cmq51u.fsf_-_@posteo.net>
and subject line Re: bug#45150: [PATCH 1/5] gnu: libid3tag: Install pkg-config 
file.
has caused the debbugs.gnu.org bug report #45150,
regarding [PATCH 1/5] gnu: libid3tag: Install pkg-config file.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
45150: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=45150
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/5] gnu: libid3tag: Install pkg-config file. Date: Wed, 9 Dec 2020 17:11:43 -0500
* gnu/packages/mp3.scm (libid3tag)[arguments]: Add 'install-pkg-config phase.
---
 gnu/packages/mp3.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm
index 4bdbe8b487..d5c8ee14b4 100644
--- a/gnu/packages/mp3.scm
+++ b/gnu/packages/mp3.scm
@@ -106,6 +106,28 @@ 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
-- 
2.29.2




--- End Message ---
--- Begin Message --- Subject: Re: bug#45150: [PATCH 1/5] gnu: libid3tag: Install pkg-config file. Date: Sun, 27 Dec 2020 17:04:29 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Efraim Flashner <efraim@flashner.co.il> writes:

> Looks good. Thanks for making all the pkg-config files. My only
> suggestion is to move ,out and version to the same line on the
> pkg-config file creation phases.

Done and pushed to master.  Thanks for reviewing!

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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