From e90a5e0db901d54ad81ccc85249c628f83bf1a98 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Mon, 13 Jul 2020 01:48:50 -0400 Subject: [PATCH 49/62] gnu: libwpe: Update package definition. * gnu/packages/webkit.scm (libwpe): Update package definition. [native-inputs]: Add python-wrapper. [synopsis]: Modify. [description]: Modify. --- gnu/packages/webkit.scm | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 3804209841..06eab4a206 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -65,29 +65,28 @@ (package (name "libwpe") (version "1.6.0") - (source (origin - (method url-fetch) - (uri (string-append "https://wpewebkit.org/releases/libwpe-" - version ".tar.xz")) - (sha256 - (base32 - "141w35b488jjhanl3nrm0awrbcy6hb579fk8n9vbpx07m2wcd1rm")))) + (source + (origin + (method url-fetch) + (uri + (string-append "https://wpewebkit.org/releases/libwpe-" + version ".tar.xz")) + (sha256 + (base32 "141w35b488jjhanl3nrm0awrbcy6hb579fk8n9vbpx07m2wcd1rm")))) (build-system cmake-build-system) (arguments - `(#:tests? #f)) ;no tests + `(#:tests? #f)) ; No target (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ("python" ,python-wrapper))) (inputs `(("mesa" ,mesa))) (propagated-inputs - `(;; In Requires of wpe-1.0.pc. - ("libxkbcommon" ,libxkbcommon))) + `(("libxkbcommon" ,libxkbcommon))) + (synopsis "General-purpose library for WPE") + (description "LibWPE is general-purpose library specifically developed for +the WPE-flavored port of WebKit.") (home-page "https://wpewebkit.org/") - (synopsis "Platform agnostic WebKit interfaces") - (description - "@code{libwpe} is a small library that defines programming interfaces -for use by WebKit, and provides a mechanism for loading a platform-specific -backend which implements them.") (license license:bsd-2))) (define-public wpebackend-fdo -- 2.27.0