guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: make-lure-package: Fix data and documentatio


From: guix-commits
Subject: branch master updated: gnu: make-lure-package: Fix data and documentation location.
Date: Mon, 10 Feb 2020 08:04:51 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new eca528c  gnu: make-lure-package: Fix data and documentation location.
eca528c is described below

commit eca528cca987ada1942721403794dff32121bfa6
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Mon Feb 10 14:03:15 2020 +0100

    gnu: make-lure-package: Fix data and documentation location.
    
    * gnu/packages/games.scm (make-lure-package)[arguments]: Make data and
    documentation location dependent on localization.
    [native-inputs]: Move bash...
    [inputs]: here.
---
 gnu/packages/games.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 5aa4ab7..e82c3c4 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7751,7 +7751,7 @@ the World and demonstrating that he is even more evil 
than his brother Vlad.")
          (use-modules (guix build utils))
          (let* ((out (assoc-ref %outputs "out"))
                 (share (string-append out "/share"))
-                (data (string-append share "/lure/" ,language))
+                (data (string-append share "/" ,name "/" ,language))
                 (apps (string-append share "/applications"))
                 (bin (string-append out "/bin"))
                 (executable (string-append bin "/" ,name))
@@ -7759,7 +7759,7 @@ the World and demonstrating that he is even more evil 
than his brother Vlad.")
            (let ((unzip (string-append (assoc-ref %build-inputs "unzip")
                                        "/bin/unzip")))
              (invoke unzip "-j" (assoc-ref %build-inputs "source")))
-           (let ((doc (string-append share "/doc/lure-" ,version)))
+           (let ((doc (string-append share "/doc/" ,name "-" ,version)))
              (for-each (lambda (f) (install-file f doc))
                        (find-files "." "\\.(txt|PDF|pdf)$")))
            (for-each (lambda (f) (install-file f data))
@@ -7794,10 +7794,10 @@ the World and demonstrating that he is even more evil 
than his brother Vlad.")
                        executable scummvm)))
            #t))))
     (native-inputs
-     `(("bash" ,bash)
-       ("unzip" ,unzip)))
+     `(("unzip" ,unzip)))
     (inputs
-     `(("scummvm" ,scummvm)))
+     `(("bash" ,bash)
+       ("scummvm" ,scummvm)))
     (home-page "https://www.scummvm.org";)
     (synopsis "2D point and click fantasy adventure game")
     (description



reply via email to

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