gnu: icecat: Install icons.
* gnu/packages/gnuzilla.scm (icecat)[arguments]: Add 'install-icons' phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
2b76f13507
commit
88a8ce87a4
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -566,7 +567,21 @@ standards.")
|
||||||
(("@MOZ_APP_NAME@")
|
(("@MOZ_APP_NAME@")
|
||||||
"icecat"))
|
"icecat"))
|
||||||
(install-file "debian/icecat.desktop" applications)
|
(install-file "debian/icecat.desktop" applications)
|
||||||
#t))))))
|
#t)))
|
||||||
|
(add-after 'install-desktop-entry 'install-icons
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
(with-directory-excursion "browser/branding/official"
|
||||||
|
(for-each
|
||||||
|
(lambda (file)
|
||||||
|
(let* ((size (string-filter char-numeric? file))
|
||||||
|
(icons (string-append out "/share/icons/hicolor/"
|
||||||
|
size "x" size "/apps")))
|
||||||
|
(mkdir-p icons)
|
||||||
|
(copy-file file (string-append icons "/icecat.png"))))
|
||||||
|
'("default16.png" "default22.png" "default24.png"
|
||||||
|
"default32.png" "default48.png" "content/icon64.png"
|
||||||
|
"mozicon128.png" "default256.png")))))))))
|
||||||
(home-page "http://www.gnu.org/software/gnuzilla/")
|
(home-page "http://www.gnu.org/software/gnuzilla/")
|
||||||
(synopsis "Entirely free browser derived from Mozilla Firefox")
|
(synopsis "Entirely free browser derived from Mozilla Firefox")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue