guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: mkvtoolnix: Install GUI to separate output.


From: guix-commits
Subject: 01/01: gnu: mkvtoolnix: Install GUI to separate output.
Date: Fri, 15 Mar 2019 04:19:33 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 99d5e5df2714a4ee36788b189f34e882b47b932a
Author: Pierre Neidhardt <address@hidden>
Date:   Fri Mar 15 09:19:00 2019 +0100

    gnu: mkvtoolnix: Install GUI to separate output.
    
    * gnu/packages/video.scm (mkvtoolnix)[arguments]: Do it.
---
 gnu/packages/video.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index c97dbbe..ee49d35 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -377,6 +377,7 @@ H.264 (MPEG-4 AVC) video streams.")
                                "lib/utf8-cpp"))
                    #t))))
     (build-system gnu-build-system)
+    (outputs '("out" "gui")) ; "mkvtoolnix-gui" brings the closure size from 
~300 MB to 1.5+ GB.
     (inputs
      `(("boost" ,boost)
        ("bzip2" ,bzip2)
@@ -432,7 +433,20 @@ H.264 (MPEG-4 AVC) video streams.")
              (invoke "rake" "tests/unit")))
          (replace 'install
            (lambda _
-             (invoke "rake" "install"))))))
+             (invoke "rake" "install")))
+         (add-after 'install 'post-install
+           (lambda* (#:key outputs #:allow-other-keys)
+             ;; Move the Qt interface to "gui".
+             (let ((out (assoc-ref outputs "out"))
+                   (gui (assoc-ref outputs "gui")))
+               (for-each
+                (lambda (file)
+                  (mkdir-p (string-append gui (dirname file)))
+                  (rename-file (string-append out file)
+                               (string-append gui file)))
+                '("/bin/mkvtoolnix-gui"
+                  "/share/applications/org.bunkus.mkvtoolnix-gui.desktop")))
+             #t)))))
     (home-page "https://mkvtoolnix.download";)
     (synopsis "Tools to create, alter and inspect Matroska files")
     (description



reply via email to

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