[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: gnome-video-effects: Update package definition.
From: |
guix-commits |
Subject: |
06/06: gnu: gnome-video-effects: Update package definition. |
Date: |
Thu, 30 Jul 2020 15:32:42 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 4fb00c561c6ef4744b2069c90ca31b683b32253d
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 24 04:02:34 2020 -0400
gnu: gnome-video-effects: Update package definition.
* gnu/packages/gnome.scm (gnome-video-effects) [version]: Update to
0.5.0.
[source]<origin>[sha256]: Modify base32.
[build-system]: Change from glib-or-gtk to meson.
[arguments]<#:glib-or-gtk?>: New argument.
[native-inputs]: Remove glib:bin. Add perl and perl-xml-parser.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index b108cf0..7bf878f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10538,28 +10538,29 @@ automatically and it can stream songs from online
music services and charts.")
(define-public gnome-video-effects
(package
(name "gnome-video-effects")
- (version "0.4.3")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/" name "-"
- version ".tar.xz"))
- (sha256
- (base32
- "06c2f1kihyhawap1s3zg5w7q7fypsybkp7xry4hxkdz4mpsy0zjs"))))
- (build-system glib-or-gtk-build-system)
+ (version "0.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/" name "-"
+ version ".tar.xz"))
+ (sha256
+ (base32 "1j6h98whgkcxrh30bwvnxvyqxrxchgpdgqhl0j71xz7x72dqxijd"))))
+ (build-system meson-build-system)
(arguments
- `(#:out-of-source? #f))
+ `(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas
(native-inputs
- `(("glib:bin" ,glib "bin")
+ `(("gettext" ,gettext-minimal)
("intltool" ,intltool)
- ("gettext" ,gettext-minimal)
+ ("perl" ,perl)
+ ("perl-xml-parser" ,perl-xml-parser)
("pkg-config" ,pkg-config)))
+ (synopsis "GNOME Video Effects")
+ (description "GNOME-Video-Effects is a collection of GStreamer effects to
be
+used in different GNOME Modules.")
(home-page "https://wiki.gnome.org/Projects/GnomeVideoEffects")
- (synopsis "Video effects for Cheese and other GNOME applications")
- (description
- "A collection of GStreamer video filters and effects to be used in
-photo-booth-like software, such as Cheese.")
(license license:gpl2+)))
(define-public cheese
- branch wip-desktop updated (956abd0 -> 4fb00c5), guix-commits, 2020/07/30
- 01/06: gnu: gmime: Update package definition., guix-commits, 2020/07/30
- 02/06: gnu: gnome-autoar: Update package definition., guix-commits, 2020/07/30
- 03/06: gnu: gnome-online-accounts: Update package definition., guix-commits, 2020/07/30
- 04/06: gnu: gfbgraph: Update package definition., guix-commits, 2020/07/30
- 05/06: gnu: gnome-online-miners: Update package definition., guix-commits, 2020/07/30
- 06/06: gnu: gnome-video-effects: Update package definition.,
guix-commits <=