guix-commits
[Top][All Lists]
Advanced

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

09/15: gnu: vim-context-filetype: Use copy-build-system.


From: guix-commits
Subject: 09/15: gnu: vim-context-filetype: Use copy-build-system.
Date: Wed, 4 Mar 2020 05:10:32 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 0b350f73fe649575cfbc2215cc7bab8859184bc9
Author: Efraim Flashner <address@hidden>
AuthorDate: Wed Mar 4 11:41:11 2020 +0200

    gnu: vim-context-filetype: Use copy-build-system.
    
    * gnu/packages/vim.scm (vim-context-filetype)[build-system]: Switch to
    copy-build-system.
    [arguments]: Adjust accordingly.
---
 gnu/packages/vim.scm | 19 ++++---------------
 1 file changed, 4 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index ca39eff..aa082d7 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -444,22 +444,11 @@ trouble using them, because you do not have to remember 
each snippet name.")
          (sha256
           (base32
            "0alvrfhmd91zkd9h83s8wvgyq4iakcf6rybsyjd369qbgpcqky89"))))
-      (build-system gnu-build-system)
+      (build-system copy-build-system)
       (arguments
-       `(#:tests? #f
-         #:phases
-         (modify-phases %standard-phases
-           (delete 'configure)
-           (delete 'build)
-           (replace 'install
-             (lambda* (#:key outputs #:allow-other-keys)
-               (let* ((out (assoc-ref outputs "out"))
-                      (vimfiles (string-append out "/share/vim/vimfiles"))
-                      (doc (string-append vimfiles "/doc"))
-                      (autoload (string-append vimfiles "/autoload")))
-                 (copy-recursively "doc" doc)
-                 (copy-recursively "autoload" autoload)
-                 #t))))))
+       '(#:install-plan
+         '(("doc" "share/vim/vimfiles/")
+           ("autoload" "share/vim/vimfiles/"))))
       (synopsis "Context filetype library for Vim")
       (description
        "@code{vim-context-filetype} is context filetype library for Vim 
script.")



reply via email to

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