guix-commits
[Top][All Lists]
Advanced

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

05/05: openshot: Unbundle font.


From: guix-commits
Subject: 05/05: openshot: Unbundle font.
Date: Mon, 8 Apr 2019 14:48:58 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 2afb79392d39df05e5b285ea46dd59eafb0616d8
Author: Efraim Flashner <address@hidden>
Date:   Mon Apr 8 19:55:07 2019 +0300

    openshot: Unbundle font.
    
    * gnu/packages/video.scm (openshot)[source]: Add snippet to remove
    bundled font.
    [inputs]: Add font-ubuntu.
    [arguments]: Add custom 'patch-font-location to patch the search path
    for the unbundled font.
---
 gnu/packages/video.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 8bf13c1..86076bf 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -91,6 +91,7 @@
   #:use-module (gnu packages elf)
   #:use-module (gnu packages file)
   #:use-module (gnu packages flex)
+  #:use-module (gnu packages fonts)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages fribidi)
@@ -3371,10 +3372,15 @@ API.  It includes bindings for Python, Ruby, and other 
languages.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0mg63v36h7l8kv2sgf6x8c1n3ygddkqqwlciz7ccxpbm4x1idqba"))))
+                "0mg63v36h7l8kv2sgf6x8c1n3ygddkqqwlciz7ccxpbm4x1idqba"))
+       (modules '((guix build utils)))
+       (snippet
+        '(begin
+           (delete-file-recursively "src/images/fonts") #t))))
     (build-system python-build-system)
     (inputs
      `(("ffmpeg" ,ffmpeg)
+       ("font-ubuntu" ,font-ubuntu)
        ("libopenshot" ,libopenshot)
        ("python" ,python)
        ("python-pyqt" ,python-pyqt)
@@ -3390,6 +3396,13 @@ API.  It includes bindings for Python, Ruby, and other 
languages.")
                             (guix build qt-utils))
        #:phases (modify-phases %standard-phases
                   (delete 'build)       ;install phase does all the work
+                  (add-after 'unpack 'patch-font-location
+                    (lambda* (#:key inputs #:allow-other-keys)
+                      (let ((font (assoc-ref inputs "font-ubuntu")))
+                        (substitute* "src/classes/app.py"
+                          (("info.IMAGES_PATH") (string-append "\"" font "\""))
+                          (("fonts") "share/fonts/truetype")))
+                      #t))
                   (add-before 'install 'set-tmp-home
                     (lambda _
                       ;; src/classes/info.py "needs" to create several



reply via email to

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