guix-commits
[Top][All Lists]
Advanced

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

02/04: petsc: Move example code to "examples" output.


From: Eric Bavier
Subject: 02/04: petsc: Move example code to "examples" output.
Date: Wed, 5 Sep 2018 09:18:10 -0400 (EDT)

bavier pushed a commit to branch master
in repository guix.

commit a3a99e27bb727b0407da13955ef47566a1919629
Author: Eric Bavier <address@hidden>
Date:   Tue Jul 31 11:31:59 2018 -0500

    petsc: Move example code to "examples" output.
    
    * gnu/packages/maths.scm (petsc)[arguments]: New 'move-examples' phase.
---
 gnu/packages/maths.scm | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index c6bcec8..ba39531 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1589,6 +1589,8 @@ September 2004}")
                           "petsc-lite-" version ".tar.gz"))
       (sha256
        (base32 "1lajbk3c29hnh83v6cbmm3a8wv6bdykh0p70kwrr4vrnizalk88s"))))
+    (outputs '("out"                    ;libraries and headers
+               "examples"))             ;~24MiB of examples
     (build-system gnu-build-system)
     (native-inputs
      `(("python" ,python-2)))
@@ -1662,6 +1664,15 @@ September 2004}")
                           "PETScBuildInternal.cmake"
                           ;; Once installed, should uninstall with Guix
                           "uninstall.py"))
+              #t)))
+        (add-after 'install 'move-examples
+          (lambda* (#:key outputs #:allow-other-keys)
+            (let* ((out (assoc-ref outputs "out"))
+                   (examples (assoc-ref outputs "examples"))
+                   (exdir (string-append out "/share/petsc/examples"))
+                   (exdir' (string-append examples "/share/petsc/examples")))
+              (copy-recursively exdir exdir')
+              (delete-file-recursively exdir)
               #t))))))
     (home-page "http://www.mcs.anl.gov/petsc";)
     (synopsis "Library to solve PDEs")



reply via email to

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