gnu: ioquake3: Deduplicate make flags.
* gnu/packages/game-development.scm (ioquake3)[arguments]: Honour #:make-flags in the 'install phase.master
parent
466021fb90
commit
5456a144c7
|
@ -2178,12 +2178,12 @@ of the others")
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure) ; no configure-script
|
(delete 'configure) ; no configure-script
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key make-flags outputs #:allow-other-keys)
|
||||||
(invoke "make" "copyfiles" "CC=gcc"
|
(apply invoke "make" "copyfiles"
|
||||||
"USE_INTERNAL_LIBS=0"
|
|
||||||
(string-append "COPYDIR="
|
(string-append "COPYDIR="
|
||||||
(assoc-ref outputs "out")
|
(assoc-ref outputs "out")
|
||||||
"/bin")))))))
|
"/bin")
|
||||||
|
make-flags))))))
|
||||||
(home-page "https://ioquake3.org/")
|
(home-page "https://ioquake3.org/")
|
||||||
(synopsis "FPS game engine based on Quake 3")
|
(synopsis "FPS game engine based on Quake 3")
|
||||||
(description "ioquake3 is a free software first person shooter engine
|
(description "ioquake3 is a free software first person shooter engine
|
||||||
|
|
Reference in New Issue