guix-commits
[Top][All Lists]
Advanced

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

05/09: gnu: protobuf: Add ‘static’ output.


From: Tobias Geerinckx-Rice
Subject: 05/09: gnu: protobuf: Add ‘static’ output.
Date: Mon, 20 Nov 2017 20:50:57 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit ffe7eee59cd7e00e76096c5021a770aeb35093b9
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Nov 16 20:45:21 2017 +0100

    gnu: protobuf: Add ‘static’ output.
    
    * gnu/packages/protobuf.scm (protobuf)[outputs]: New field.
    [arguments]: Add new ‘move-static-libraries’ phase.
---
 gnu/packages/protobuf.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 2e681ca..02d58b1 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -46,6 +46,24 @@
                 "0y6cr4l7bwa6zvjv5flzr4cx28shk5h8dz99xw90v8qih954pcrb"))))
     (build-system gnu-build-system)
     (inputs `(("zlib" ,zlib)))
+    (outputs (list "out"
+                   "static"))           ; ~12 MiB of .a files
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'move-static-libraries
+           (lambda* (#:key outputs #:allow-other-keys)
+             ;; Move static libraries to the "static" output.
+             (let* ((out    (assoc-ref outputs "out"))
+                    (lib    (string-append out "/lib"))
+                    (static (assoc-ref outputs "static"))
+                    (slib   (string-append static "/lib")))
+               (mkdir-p slib)
+               (for-each (lambda (file)
+                           (install-file file slib)
+                           (delete-file file))
+                         (find-files lib "\\.a$"))
+               #t))))))
     (home-page "https://github.com/google/protobuf";)
     (synopsis "Data encoding for remote procedure calls (RPCs)")
     (description



reply via email to

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