gnu: inkscape: Disable "icon-theme.cache" generation.
* gnu/packages/inkscape.scm (inkscape)[arguments]<#:make-flags>: Delete. <#:phases>[patch-icon-cache-generator]: Add phase.
This commit is contained in:
parent
cbd2e3d52d
commit
20f5c86c3e
|
@ -80,8 +80,13 @@
|
||||||
;; FIXME: tests require gmock
|
;; FIXME: tests require gmock
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
#:make-flags
|
#:phases
|
||||||
'("gtk_update_icon_cache=true")))
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-icon-cache-generator
|
||||||
|
(lambda _
|
||||||
|
(substitute* "share/icons/application/CMakeLists.txt"
|
||||||
|
(("gtk-update-icon-cache") "true"))
|
||||||
|
#t)))))
|
||||||
(home-page "https://inkscape.org/")
|
(home-page "https://inkscape.org/")
|
||||||
(synopsis "Vector graphics editor")
|
(synopsis "Vector graphics editor")
|
||||||
(description "Inkscape is a vector graphics editor. What sets Inkscape
|
(description "Inkscape is a vector graphics editor. What sets Inkscape
|
||||||
|
|
Loading…
Reference in New Issue