rosenthal: qogir-icon-theme: Update to 2023.02.23.

* rosenthal/packages/gnome-xyz.scm (qogir-icon-theme): Update to 2023.02.23.
[build-system]: Switch to copy-build-system.
remotes/origin/trunk
Hilton Chain 1 year ago
parent 1423079db1
commit aa6d2d652c
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292
  1. 32
      rosenthal/packages/gnome-xyz.scm

@ -1,10 +1,10 @@
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space> ;; SPDX-FileCopyrightText: 2022-2023 Hilton Chain <hako@ultrarare.space>
;; ;;
;; SPDX-License-Identifier: GPL-3.0-or-later ;; SPDX-License-Identifier: GPL-3.0-or-later
(define-module (rosenthal packages gnome-xyz) (define-module (rosenthal packages gnome-xyz)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu) #:use-module (guix build-system copy)
#:use-module (guix gexp) #:use-module (guix gexp)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix packages) #:use-module (guix packages)
@ -13,7 +13,7 @@
(define-public qogir-icon-theme (define-public qogir-icon-theme
(package (package
(name "qogir-icon-theme") (name "qogir-icon-theme")
(version "2022.11.05") (version "2023.02.23")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -25,25 +25,19 @@
(("gtk-update-icon-cache") "true"))) (("gtk-update-icon-cache") "true")))
(sha256 (sha256
(base32 (base32
"1wcqa0wla6qlyfv3g5zhailpl0lyfck8fybxih8ka9bd2fdws399")))) "1firj5yx38m2vp9bwkcinnz7swx75nr5pg59ld21gd4pz2dlfyn9"))))
(build-system gnu-build-system) (build-system copy-build-system)
(arguments (arguments
(list #:tests? #f ;no tests (list #:phases
#:configure-flags
#~(list "--dest" (string-append #$output "/share/icons")
"--theme" "all"
"--color" "all")
#:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(delete 'bootstrap)
(delete 'configure)
(delete 'build)
(replace 'install (replace 'install
(lambda* (#:key (configure-flags '()) #:allow-other-keys) (lambda _
(mkdir-p (let* ((dest (string-append #$output "/share/icons"))
(cadr (or (member "--dest" configure-flags) (flags (list "--theme" "all"
(member "-d" configure-flags)))) "--color" "all"
(apply invoke "sh" "install.sh" configure-flags)))))) "--dest" dest)))
(mkdir-p dest)
(apply invoke "sh" "install.sh" flags)))))))
(home-page "https://www.pling.com/p/1296407/") (home-page "https://www.pling.com/p/1296407/")
(synopsis "Colorful design icon theme for linux desktops") (synopsis "Colorful design icon theme for linux desktops")
(description "A flat colorful design icon theme for linux desktops.") (description "A flat colorful design icon theme for linux desktops.")

Loading…
Cancel
Save