mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: love-nuklear: Install to lib/love.
* gnu/packages/game-development.scm (love-nuklear)[#:phases]: Add ‘patch-cmake’ phase to change install destination.
This commit is contained in:
parent
744fe9ee25
commit
80aeefd517
1 changed files with 7 additions and 1 deletions
|
@ -840,7 +840,13 @@ (define-public love-nuklear
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:build-type "Release"
|
`(#:build-type "Release"
|
||||||
#:tests? #f))
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-cmake
|
||||||
|
(lambda _
|
||||||
|
(substitute* "CMakeLists.txt"
|
||||||
|
(("DESTINATION .") "DESTINATION lib/love")))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("luajit" ,luajit)))
|
`(("luajit" ,luajit)))
|
||||||
(synopsis "Lightweight immediate mode GUI for LÖVE games")
|
(synopsis "Lightweight immediate mode GUI for LÖVE games")
|
||||||
|
|
Loading…
Reference in a new issue