[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
192/331: gnu: gsound: Update package definition.
From: |
guix-commits |
Subject: |
192/331: gnu: gsound: Update package definition. |
Date: |
Fri, 14 Aug 2020 11:13:39 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit ceb04f55ab9abd80d686318b4ed27bc333256d30
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 24 13:10:42 2020 -0400
gnu: gsound: Update package definition.
* gnu/packages/gnome.scm (gsound): Update package definition.
[outputs]: New output "doc".
[arguments]<#:configure-flags>[--disable-static]: New flag.
[--enable-gtk-doc]: New flag.
[--with-html-dir=]: New flag.
<#:phases>['patch-docbook-xml]: New phase.
[native-inputs]: Add docbook-xml and gtk-doc.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 50 +++++++++++++++++++++++++++++++++++---------------
1 file changed, 35 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 147d132..6c451a8 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1209,7 +1209,6 @@ UPnP's internals.")
("glib:bin" ,glib "bin")
("gobject-introspection" ,gobject-introspection)
("gtk-doc" ,gtk-doc)
- ("libxml" ,libxml2)
("pkg-config" ,pkg-config)
("vala" ,vala)))
(inputs
@@ -9505,28 +9504,49 @@ specified duration and save it as a GIF encoded
animated image file.")
(package
(name "gsound")
(version "1.0.2")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (sha256
- (base32
- "0lwfwx2c99qrp08pfaj59pks5dphsnxjgrxyadz065d8xqqgza5v"))))
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "0lwfwx2c99qrp08pfaj59pks5dphsnxjgrxyadz065d8xqqgza5v"))))
(build-system glib-or-gtk-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:configure-flags
+ (list
+ "--disable-static"
+ "--enable-gtk-doc"
+ (string-append "--with-html-dir="
+ (assoc-ref %outputs "doc")
+ "/share/gtk-doc/html"))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs"
+ (substitute* "gsound-docs.sgml"
+ (("http://www.oasis-open.org/docbook/xml/4.3/")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/"))))
+ #t)))))
(native-inputs
- `(("pkg-config" ,pkg-config)
+ `(("docbook-xml" ,docbook-xml-4.3)
("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("pkg-config" ,pkg-config)
("vala" ,vala)))
(inputs
`(("glib" ,glib)
("libcanberra" ,libcanberra)))
- (home-page "https://wiki.gnome.org/Projects/GSound")
(synopsis "GObject wrapper for libcanberra")
- (description
- "GSound is a small library for playing system sounds. It's designed to be
-used via GObject Introspection, and is a thin wrapper around the libcanberra C
-library.")
+ (description "GSound is a small library for playing system sounds. It's
+designed to be used via GObject Introspection, and is a thin wrapper around the
+libcanberra C library.")
+ (home-page "https://wiki.gnome.org/Projects/GSound")
(license license:lgpl2.1+)))
(define-public libzapojit
- 172/331: gnu: gegl: Update package definition., (continued)
- 172/331: gnu: gegl: Update package definition., guix-commits, 2020/08/14
- 174/331: gnu: gexiv2: Update package definition., guix-commits, 2020/08/14
- 176/331: gnu: gnome-autoar: Update package definition., guix-commits, 2020/08/14
- 184/331: gnu: grilo: Update package definition., guix-commits, 2020/08/14
- 179/331: gnu: gnome-online-miners: Update package definition., guix-commits, 2020/08/14
- 185/331: gnu: Add pedansee., guix-commits, 2020/08/14
- 181/331: gnu: gobject-introspection: Add patches back., guix-commits, 2020/08/14
- 183/331: gnu: gom: Update package definition., guix-commits, 2020/08/14
- 187/331: gnu: gssdp: Update package definition., guix-commits, 2020/08/14
- 190/331: gnu: grilo-plugins: Update package definition., guix-commits, 2020/08/14
- 192/331: gnu: gsound: Update package definition.,
guix-commits <=
- 189/331: gnu: gupnp-av: Update package definition., guix-commits, 2020/08/14
- 200/331: gnu: libgnomekbd: Update package definition., guix-commits, 2020/08/14
- 169/331: gnu: Add poly2tri-c., guix-commits, 2020/08/14
- 175/331: gnu: gmime: Update package definition., guix-commits, 2020/08/14
- 218/331: gnu: libappindicator: Propagate gtk+ and libdbusmenu., guix-commits, 2020/08/14
- 222/331: gnu: network-manager-applet: Update package definition., guix-commits, 2020/08/14
- 226/331: gnu: Add libgrss., guix-commits, 2020/08/14
- 225/331: gnu: gtksourceview: Fix glade., guix-commits, 2020/08/14
- 232/331: gnu: Add libstemmer., guix-commits, 2020/08/14
- 234/331: gnu: tracker-miners: Update package definition., guix-commits, 2020/08/14