mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -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)
|
||||
(arguments
|
||||
`(#: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
|
||||
`(("luajit" ,luajit)))
|
||||
(synopsis "Lightweight immediate mode GUI for LÖVE games")
|
||||
|
|
Loading…
Reference in a new issue