From 9211d4324c2f981ce8aa83c2906cbce6aeb99f7b Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 4 Oct 2021 17:50:42 +0200 Subject: gnu: arc-theme: Update to 20210412. * gnu/packages/gnome-xyz.scm (arc-theme): Update to 20210412. [build-system]: Switch to meson-build-system. [native-inputs]: Remove autoconf and automake. [arguments]: Adapt 'configure-flags' for meson-build-system. Remove custom 'bootstrap' phase. --- gnu/packages/gnome-xyz.scm | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index c41ead3997..4b25299a5d 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2020 Ellis Kenyo ;;; Copyright © 2020 Stefan Reichör ;;; Copyright © 2021 Vinicius Monego +;;; Copyright © 2021 Guillaume Le Vaillant ;;; ;;; This file is part of GNU Guix. ;;; @@ -603,7 +604,7 @@ (define-public gnome-shell-extension-paperwm (define-public arc-theme (package (name "arc-theme") - (version "20201013") + (version "20210412") (source (origin (method git-fetch) (uri (git-reference @@ -612,24 +613,19 @@ (define-public arc-theme (file-name (git-file-name name version)) (sha256 (base32 - "1x2l1mwjx68dwf3jb1i90c1q8nqsl1wf2zggcn8im6590k5yv39s")))) - (build-system gnu-build-system) + "0zs44dagp6baiyszlr1kj5ncap43fg32dv07rl46nxbds2p65lh4")))) + (build-system meson-build-system) (arguments '(#:configure-flags - (list "--disable-cinnamon") + '("-Dthemes=gnome-shell,gtk2,gtk3,metacity,plank,unity,xfwm") #:phases (modify-phases %standard-phases - ;; autogen.sh calls configure at the end of the script. - (replace 'bootstrap - (lambda _ (invoke "autoreconf" "-vfi"))) (add-before 'build 'set-home ;placate Inkscape (lambda _ (setenv "HOME" (getcwd)) #t))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("glib" ,glib "bin") ; for glib-compile-resources + `(("glib" ,glib "bin") ; for glib-compile-resources ("gnome-shell" ,gnome-shell) ("gtk+" ,gtk+) ("inkscape" ,inkscape) -- cgit v1.2.3