mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: qutebrowser: Install more scripts.
* gnu/packages/web-browsers.scm (qutebrowser)[arguments]: Rewrite cutsom 'install-more phase to use included makefile.
This commit is contained in:
parent
a8f4023705
commit
7fb0207aa2
1 changed files with 6 additions and 19 deletions
|
@ -504,25 +504,12 @@ (define-public qutebrowser
|
|||
(setenv "QT_QPA_PLATFORM" "offscreen")))
|
||||
(add-after 'install 'install-more
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(app (string-append out "/share/applications"))
|
||||
(hicolor (string-append out "/share/icons/hicolor")))
|
||||
(install-file "doc/qutebrowser.1"
|
||||
(string-append out "/share/man/man1"))
|
||||
(for-each
|
||||
(lambda (i)
|
||||
(let ((src (format #f "icons/qutebrowser-~dx~d.png" i i))
|
||||
(dest (format #f "~a/~dx~d/apps/qutebrowser.png"
|
||||
hicolor i i)))
|
||||
(mkdir-p (dirname dest))
|
||||
(copy-file src dest)))
|
||||
'(16 24 32 48 64 128 256 512))
|
||||
(install-file "icons/qutebrowser.svg"
|
||||
(string-append hicolor "/scalable/apps"))
|
||||
(substitute* "misc/org.qutebrowser.qutebrowser.desktop"
|
||||
(("Exec=qutebrowser")
|
||||
(string-append "Exec=" out "/bin/qutebrowser")))
|
||||
(install-file "misc/org.qutebrowser.qutebrowser.desktop" app))))
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(rename-file "misc/Makefile" "Makefile")
|
||||
(substitute* "Makefile"
|
||||
((".*setup\\.py.*") ""))
|
||||
(invoke "make" "install" (string-append "PREFIX=" out))
|
||||
(delete-file-recursively (string-append out "/share/metainfo")))))
|
||||
(add-after 'wrap 'wrap-qt-process-path
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue