mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: 0ad: Use INVOKE.
* gnu/packages/games.scm (0ad)[arguments]: Use INVOKE.
This commit is contained in:
parent
c771b799bd
commit
7b67bb1fab
1 changed files with 6 additions and 6 deletions
|
@ -4716,11 +4716,11 @@ (define-public 0ad
|
|||
(setenv "JOBS" (string-append "-j" jobs))
|
||||
(setenv "CC" "gcc")
|
||||
(with-directory-excursion "build/workspaces"
|
||||
(zero? (system* "./update-workspaces.sh"
|
||||
(string-append "--libdir=" lib)
|
||||
(string-append "--datadir=" data)
|
||||
;; TODO: "--with-system-nvtt"
|
||||
"--with-system-mozjs38"))))))
|
||||
(invoke "./update-workspaces.sh"
|
||||
(string-append "--libdir=" lib)
|
||||
(string-append "--datadir=" data)
|
||||
;; TODO: "--with-system-nvtt"
|
||||
"--with-system-mozjs38")))))
|
||||
(delete 'check)
|
||||
(replace 'install
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
|
@ -4754,7 +4754,7 @@ (define-public 0ad
|
|||
(add-after 'install 'check
|
||||
(lambda _
|
||||
(with-directory-excursion "system"
|
||||
(zero? (system* "./test"))))))))
|
||||
(invoke "./test")))))))
|
||||
(home-page "https://play0ad.com")
|
||||
(synopsis "3D real-time strategy game of ancient warfare")
|
||||
(description "0 A.D. is a real-time strategy (RTS) game of ancient
|
||||
|
|
Loading…
Reference in a new issue