gnu: crawl: Use INVOKE.
* gnu/packages/games.scm (crawl)[arguments]: Use INVOKE in "check" phase.
This commit is contained in:
parent
f08d34a007
commit
d59a8ac629
|
@ -4489,10 +4489,10 @@ fish. The whole game is accompanied by quiet, comforting music.")
|
||||||
(setenv "HOME" (getcwd))
|
(setenv "HOME" (getcwd))
|
||||||
;; Fake a terminal for the test cases.
|
;; Fake a terminal for the test cases.
|
||||||
(setenv "TERM" "xterm-256color")
|
(setenv "TERM" "xterm-256color")
|
||||||
(zero? (apply system* "make" "debug" "test"
|
(apply invoke "make" "debug" "test"
|
||||||
(format #f "-j~d" (parallel-job-count))
|
(format #f "-j~d" (parallel-job-count))
|
||||||
;; Force command line build for test cases.
|
;; Force command line build for test cases.
|
||||||
(append make-flags '("GAME=crawl" "TILES=")))))))))
|
(append make-flags '("GAME=crawl" "TILES="))))))))
|
||||||
(synopsis "Roguelike dungeon crawler game")
|
(synopsis "Roguelike dungeon crawler game")
|
||||||
(description "Dungeon Crawl Stone Soup is a roguelike adventure through
|
(description "Dungeon Crawl Stone Soup is a roguelike adventure through
|
||||||
dungeons filled with dangerous monsters in a quest to find the mystifyingly
|
dungeons filled with dangerous monsters in a quest to find the mystifyingly
|
||||||
|
|
Loading…
Reference in New Issue