guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: lame: Install pkg-config file.


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

kkebreau pushed a commit to branch master
in repository guix.

commit fc5f56eaf4ef1dc09a7e4062c2b973aa9f27b285
Author: Kei Kebreau <kkebreau@posteo.net>
AuthorDate: Wed Dec 9 15:08:33 2020 -0500

    gnu: lame: Install pkg-config file.
    
    * gnu/packages/mp3.scm (lame)[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 7a0c350..fa45ef9 100644
--- a/gnu/packages/mp3.scm
+++ b/gnu/packages/mp3.scm
@@ -428,6 +428,27 @@ use with CD-recording software).")
               (base32
                "07nsn5sy3a8xbmw1bidxnsj5fj6kg9ai04icmqw40ybkp353dznx"))))
     (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 "/lame.pc")
+                 (lambda _
+                   (format #t
+                           "prefix=~@*~a~@
+                           libdir=${prefix}/lib~@
+                           includedir=${prefix}/include~@
+
+                           Name: lame~@
+                           Description:~@
+                           Version: ~a~@
+                           Libs: -L${libdir} -lmp3lame~@
+                           Cflags: -I${includedir}~%"
+                           out ,version)))))))))
     (home-page "http://lame.sourceforge.net/";)
     (synopsis "MPEG Audio Layer III (MP3) encoder")
     (description "LAME is a high quality MPEG Audio Layer III (MP3) encoder.")



reply via email to

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