[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#39717] [PATCH 1/3] gnu: delft-icon-theme: Use the copy-build-system
From: |
Leo Prikler |
Subject: |
[bug#39717] [PATCH 1/3] gnu: delft-icon-theme: Use the copy-build-system. |
Date: |
Fri, 21 Feb 2020 17:32:13 +0100 |
* gnu/packages/gnome-xyz.scm (delft-icon-theme): Use the copy-build-system.
---
gnu/packages/gnome-xyz.scm | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 06af41aea6..882bd40c2e 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -33,7 +33,8 @@
#:use-module (gnu packages gtk)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages ruby)
- #:use-module (gnu packages xml))
+ #:use-module (gnu packages xml)
+ #:use-module (srfi srfi-1))
(define-public matcha-theme
(package
@@ -95,19 +96,17 @@ like Gnome, Unity, Budgie, Pantheon, XFCE, Mate and
others.")
(base32
"0vw3yw9f9ygzfd2k3zrfih3r0vkzlhk1bmsk8sapvk7np24i1z9s"))
(file-name (git-file-name name version))))
- (build-system trivial-build-system)
+ (build-system copy-build-system)
(arguments
- `(#:modules ((guix build utils))
- #:builder
- (begin
- (use-modules (guix build utils))
- (copy-recursively (assoc-ref %build-inputs "source") "icons")
- (substitute* "icons/Delft/index.theme"
- (("gnome") "Adwaita"))
- (delete-file "icons/README.md")
- (delete-file "icons/LICENSE")
- (delete-file "icons/logo.jpg")
- (copy-recursively "icons" (string-append %output "/share/icons")))))
+ `(#:install-plan
+ '(,@(append-map (lambda (file)
+ `((,file "share/icons/")
+ (,(string-append file "-Dark") "share/icons/")
+ (,(string-append file "-Darker") "share/icons/")
+ (,(string-append file "-Darkest") "share/icons/")))
+ '("Delft" "Delft-Amber" "Delft-Aqua" "Delft-Blue"
+ "Delft-Gray" "Delft-Green" "Delft-Mint" "Delft-Purple"
+ "Delft-Red" "Delft-Teal")))))
(home-page "https://www.gnome-look.org/p/1199881/")
(synopsis "Continuation of Faenza icon theme with up to date app icons")
(description "Delft is a fork of the popular icon theme Faenza with up to
--
2.25.1
- [bug#39717] [PATCH 1/3] gnu: delft-icon-theme: Use the copy-build-system.,
Leo Prikler <=