mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: mcomix: Install messages.
* gnu/packages/image-viewer.scm (mcomix)[install-data]: Also install messages subdirectory.
This commit is contained in:
parent
943d4b775b
commit
2344fb1097
1 changed files with 12 additions and 7 deletions
|
@ -697,13 +697,18 @@ (define-public mcomix
|
|||
"if name in supported_formats_gdk: continue"))))
|
||||
(add-after 'install 'install-data
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(copy-recursively
|
||||
"mcomix/images"
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/lib/python"
|
||||
#$(version-major+minor
|
||||
(package-version (this-package-input "python")))
|
||||
"/site-packages/mcomix/images"))))
|
||||
(with-directory-excursion "mcomix"
|
||||
(for-each
|
||||
(lambda (subdir)
|
||||
(copy-recursively
|
||||
subdir
|
||||
(string-append
|
||||
(assoc-ref outputs "out")
|
||||
"/lib/python"
|
||||
#$(version-major+minor
|
||||
(package-version (this-package-input "python")))
|
||||
"/site-packages/mcomix/" subdir)))
|
||||
'("images" "messages")))))
|
||||
(add-after 'glib-or-gtk-compile-schemas 'glib-or-gtk-wrap
|
||||
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
|
||||
(add-after 'wrap 'gi-wrap
|
||||
|
|
Loading…
Reference in a new issue