mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add phonon-backend-gstreamer.
* gnu/packages/kde-frameworks.scm (phonon-backend-gstreamer): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
5578c2987e
commit
4bff300b53
1 changed files with 36 additions and 0 deletions
|
@ -43,6 +43,7 @@ (define-module (gnu packages kde-frameworks)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
|
#:use-module (gnu packages gstreamer)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
@ -137,6 +138,41 @@ (define-public phonon
|
||||||
(description "KDE's multimedia library.")
|
(description "KDE's multimedia library.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public phonon-backend-gstreamer
|
||||||
|
(package
|
||||||
|
(name "phonon-backend-gstreamer")
|
||||||
|
(version "4.9.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://kde/stable/phonon/"
|
||||||
|
name "/" version "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1wc5p1rqglf0n1avp55s50k7fjdzdrhg0gind15k8796w7nfbhyf"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("qtbase" ,qtbase)
|
||||||
|
("phonon" ,phonon)
|
||||||
|
("qtbase" ,qtbase)
|
||||||
|
("qtx11extras" ,qtx11extras)
|
||||||
|
("gstreamer" ,gstreamer)
|
||||||
|
("gst-plugins-base" ,gst-plugins-base)
|
||||||
|
("libxml2" ,libxml2)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
'( "-DPHONON_BUILD_PHONON4QT5=ON")))
|
||||||
|
(home-page "https://phonon.kde.org")
|
||||||
|
(synopsis "Phonon backend which uses GStreamer")
|
||||||
|
(description "Phonon makes use of backend libraries to provide sound.
|
||||||
|
Phonon-GStreamer is a backend based on the GStreamer multimedia library.")
|
||||||
|
;; license: source files mention "either version 2.1 or 3"
|
||||||
|
(license (list license:lgpl2.1 license:lgpl3))))
|
||||||
|
|
||||||
(define-public gpgmepp
|
(define-public gpgmepp
|
||||||
(package
|
(package
|
||||||
(name "gpgmepp")
|
(name "gpgmepp")
|
||||||
|
|
Loading…
Reference in a new issue