guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

188/285: gnu: Add libkcddb.


From: guix-commits
Subject: 188/285: gnu: Add libkcddb.
Date: Sun, 29 Dec 2019 20:44:27 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit b464400d939304a54f4ad9da7d7252b0930131ed
Author: Hartmut Goebel <address@hidden>
Date:   Fri Dec 6 21:46:24 2019 +0100

    gnu: Add libkcddb.
    
    * gnu/packages/kde-multimedia.scm (libkcddb): New variable.
---
 gnu/packages/kde-multimedia.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index e637376..c798e04 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -194,3 +194,34 @@ from .WAV and .MP3 audio files, configuring external 
programs and configuring
 devices.")
     (license ;; GPL for programs, FDL for documentation
      (list license:gpl2+ license:fdl1.2+))))
+
+(define-public libkcddb
+  (package
+    (name "libkcddb")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/libkcddb-" version ".tar.xz"))
+       (sha256
+        (base32 "1rla9sfzpdfiki0p265ga6d1axqpq37825maaw85hm84mg7hkzjn"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcodecs" ,kcodecs)
+       ("kconfig" ,kconfig)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("libmusicbrainz" ,libmusicbrainz)
+       ("qtbase" ,qtbase)))
+    (arguments
+     `(#:tests? #f)) ; Most tests require network
+    (home-page "https://cgit.kde.org/libkcddb.git";)
+    (synopsis "CDDB library for KDE Platform (runtime)")
+    (description "A library for retrieving and sending cddb information.")
+    (license ;; GPL for programs, LGPL for libraries, FDL for documentation
+     (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]