gnu: xonotic: Symlink to xonotic data instead of copying into xonotic.
* gnu/packages/games.scm (xonotic)[arguments]: Modify the phase 'install-data so it creates a symlink to xonotic's data instead of copying it into the xonotic package. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c3276dbecb
commit
cc661cb348
|
@ -5606,8 +5606,8 @@ quotation from a collection of quotes.")
|
|||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(data (assoc-ref inputs "xonotic-data")))
|
||||
(copy-recursively (string-append data "/share/xonotic")
|
||||
(string-append out "/share/xonotic"))
|
||||
(symlink (string-append data "/share/xonotic")
|
||||
(string-append out "/share/xonotic"))
|
||||
#t)))
|
||||
(add-after 'install-binaries 'wrap-binaries
|
||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in New Issue