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:
Liliana Marie Prikler 2021-09-25 11:14:52 +02:00
parent 744fe9ee25
commit 80aeefd517
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -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")