summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEric Bavier <bavier@member.fsf.org>2018-12-01 11:13:25 -0600
committerEric Bavier <bavier@member.fsf.org>2018-12-01 11:14:32 -0600
commitf88c0ab831e2b14632557373349bfc8e67cb5858 (patch)
tree5ab13eb1ac3a389ee0343559722ad9e4c8c88822 /gnu
parentfb0b645658041c3061d2f70dc1a11a100f569217 (diff)
tuxpaint: Fix .desktop and icon installation.
* gnu/packages/games.scm (tuxpaint)[arguments]: 'GNOME_PREFIX' -> 'KDE_PREFIX'. Add 'no-sys-cache phase.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/games.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 36eaa6c063c..7f84e447bb7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -3299,12 +3299,18 @@ safety of the Chromium vessel.")
3299 "GPERF=gperf" "CC=gcc" 3299 "GPERF=gperf" "CC=gcc"
3300 "SDL_PCNAME=sdl SDL_image SDL_mixer SDL_ttf" 3300 "SDL_PCNAME=sdl SDL_image SDL_mixer SDL_ttf"
3301 ,(string-append "PREFIX=" %output) 3301 ,(string-append "PREFIX=" %output)
3302 "GNOME_PREFIX=$(PREFIX)" 3302 "KDE_PREFIX=$(PREFIX)/share/applications"
3303 "KDE_ICON_PREFIX=$(PREFIX)/share/icons/"
3303 "COMPLETIONDIR=$(PREFIX)/etc/bash_completion.d") 3304 "COMPLETIONDIR=$(PREFIX)/etc/bash_completion.d")
3304 #:parallel-build? #f ;fails on some systems 3305 #:parallel-build? #f ;fails on some systems
3305 #:tests? #f ;No tests 3306 #:tests? #f ;No tests
3306 #:phases (modify-phases %standard-phases 3307 #:phases (modify-phases %standard-phases
3307 (delete 'configure) ;no configure phase 3308 (delete 'configure) ;no configure phase
3309 (add-before 'install 'no-sys-cache
3310 (lambda _ ;do not rebuild system conf cache
3311 (substitute* "Makefile"
3312 (("kbuildsycoca4") ""))
3313 #t))
3308 (add-after 'install 'fix-import 3314 (add-after 'install 'fix-import
3309 (lambda* (#:key inputs outputs #:allow-other-keys) 3315 (lambda* (#:key inputs outputs #:allow-other-keys)
3310 (let* ((out (assoc-ref outputs "out")) 3316 (let* ((out (assoc-ref outputs "out"))