[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61576] [PATCH 03/21] gnu: spice-gtk: Use gexps.
From: |
Maxim Cournoyer |
Subject: |
[bug#61576] [PATCH 03/21] gnu: spice-gtk: Use gexps. |
Date: |
Fri, 17 Feb 2023 12:00:44 -0500 |
* gnu/packages/spice.scm (spice-gtk) [arguments]: Streamline and use gexps.
---
gnu/packages/spice.scm | 59 +++++++++++++++++++++---------------------
1 file changed, 29 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index c513e3db13..3d625a063a 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -3,7 +3,7 @@
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
-;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -148,35 +148,34 @@ (define-public spice-gtk
"1drvj8y35gnxbnrxsipwi15yh0vs9ixzv4wslz6r3lra8w3bfa0z"))))
(build-system gnu-build-system)
(arguments
- `(#:configure-flags '("--enable-gstaudio"
- "--enable-gstvideo"
- "--enable-pulse"
- "--enable-vala"
- "--enable-introspection")
- #:phases
- (modify-phases %standard-phases
- (add-before 'check 'disable-session-test
- (lambda _
- ;; XXX: Disable session tests, because they require USB support,
- ;; which is not available in the build container.
- (substitute* "tests/Makefile"
- (("test-session\\$\\(EXEEXT\\) ") ""))))
- (add-after 'install 'patch-la-files
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (libjpeg (assoc-ref inputs "libjpeg")))
- ;; Add an absolute reference for libjpeg in the .la files
- ;; so it does not have to be propagated.
- (substitute* (find-files (string-append out "/lib") "\\.la$")
- (("-ljpeg")
- (string-append "-L" libjpeg "/lib -ljpeg"))))))
- (add-after 'install 'wrap-spicy
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
- (wrap-program (string-append out "/bin/spicy")
- `("GST_PLUGIN_SYSTEM_PATH" ":"
- prefix (,gst-plugin-path)))))))))
+ (list
+ #:configure-flags #~(list "--enable-gstaudio"
+ "--enable-gstvideo"
+ "--enable-pulse"
+ "--enable-vala"
+ "--enable-introspection")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'disable-session-test
+ (lambda _
+ ;; XXX: Disable session tests, because they require USB support,
+ ;; which is not available in the build container.
+ (substitute* "tests/Makefile"
+ (("test-session\\$\\(EXEEXT\\) ") ""))))
+ (add-after 'install 'patch-la-files
+ (lambda _
+ ;; Add an absolute reference for libjpeg in the .la files
+ ;; so it does not have to be propagated.
+ (substitute* (find-files (string-append #$output "/lib")
+ "\\.la$")
+ (("-ljpeg")
+ (string-append "-L" #$(this-package-input "libjpeg-turbo")
+ "/lib -ljpeg")))))
+ (add-after 'install 'wrap-spicy
+ (lambda* (#:key outputs #:allow-other-keys)
+ (wrap-program (search-input-file outputs "bin/spicy")
+ `("GST_PLUGIN_SYSTEM_PATH" ":"
+ prefix (,(getenv "GST_PLUGIN_SYSTEM_PATH")))))))))
(native-inputs
(list `(,glib "bin")
intltool
--
2.39.1
- [bug#61576] [PATCH 00/21] Allow USB redirection as an unprivileged user in in GNOME Boxes, Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 01/21] gnu: spice-gtk: Fix indentation and normalize field order., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 08/21] gnu: virglrenderer: Update to 0.7.0., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 06/21] gnu: spice-protocol: Update to 0.14.4., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 09/21] gnu: libcacard: Remove obsolete configure flags., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 03/21] gnu: spice-gtk: Use gexps.,
Maxim Cournoyer <=
- [bug#61576] [PATCH 12/21] gnu: usbutils: Update to 015., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 15/21] gnu: osinfo-db: Use libsoup 3., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 04/21] gnu: spice-gtk: Update to 0.42., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 13/21] gnu: phodav: Propagate glib, libsoup and libxml2., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 18/21] services: desktop: Extract a new gnome-package procedure., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 20/21] gnu: gnome-boxes: Mention extra configuration requirements., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 10/21] gnu: spice: Update to 0.15.1., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 05/21] gnu: spice-gtk: Propagate libjpeg-turbo, lz4, opus, and usbredir., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 14/21] gnu: spice-gtk: Enable support for polkit, webdav and others., Maxim Cournoyer, 2023/02/17
- [bug#61576] [PATCH 02/21] gnu: spice-gtk: Remove input labels., Maxim Cournoyer, 2023/02/17