unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: 38532@debbugs.gnu.org
Subject: [bug#38532] [PATCH 09/11] gnu: Add kwave.
Date: Sun,  8 Dec 2019 17:43:53 +0100	[thread overview]
Message-ID: <20191208164355.7374-9-h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <20191208164355.7374-1-h.goebel@crazy-compilers.com>

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

diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 17f4cb7e06..924cf48536 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -23,8 +23,11 @@
   #:use-module (guix packages)
   #:use-module (guix utils)
   #:use-module (gnu packages)
+  #:use-module (gnu packages audio)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages compression)
   #:use-module (gnu packages glib)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages libcanberra)
@@ -401,3 +404,80 @@ Some features:
 @item For TV sources, you need v4lctl (part of the xawtv package)
 @end itemize")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kwave
+  (package
+    (name "kwave")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kwave-" version ".tar.xz"))
+       (sha256
+        (base32 "1vv3m3h9mvjr9sxajccqnvcgvz901n3qxhki0g7vsljvh31x5s5x"))))
+    (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("librsvg" ,librsvg)
+       ("pkg-config" ,pkg-config)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("also-lib" ,alsa-lib)
+       ("audiofile" ,audiofile)
+       ("flac" ,flac)
+       ("id3lib" ,id3lib)
+       ("karchive" ,karchive)
+       ("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kio" ,kio)
+       ("kservice" ,kservice)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libmad" ,libmad)
+       ("libsamplerate" ,libsamplerate)
+       ("libvorbis" ,libvorbis)
+       ("opus" ,opus)
+       ;;("oxygen-icons" ,oxygen-icons) ; default icon set
+       ("pulseaudio" ,pulseaudio)
+       ("qtbase" ,qtbase)
+       ("qtmultimedia" ,qtmultimedia)
+       ("zlib" ,zlib)))
+    (home-page "https://kde.org/applications/multimedia/org.kde.kwave")
+    (synopsis "Sound editor for KDE")
+    (description "Kwave is a sound editor designed for the KDE Desktop
+Environment.
+
+With Kwave you can record, play back, import and edit many sorts of audio
+files including multi-channel files.  It includes some plugins to transform
+audio files in several ways and presents a graphical view with a complete
+zoom- and scroll capability.
+
+Its features include:
+@itemize
+@item 24 Bit Support
+@item Undo/Redo
+@item Use of multicore CPUs (SMP, hyperthreading)
+@item Simple Drag & Drop
+@item Realtime Pre-Listen for some effects
+@item Support for multi-track files
+@item Playback and recording via native ALSA (or OSS, deprecated)
+@item Playback via PulseAudio and Phonon
+@item Load and edit-capability for large files (can use virtual memory)
+@item Reading and auto-repair of damaged wav-files
+@item Supports multiple windows
+@item Extendable Plugin interface
+@item a nice splashscreen
+@item some label handling
+@end itemize")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+
+                   license:cc-by-sa3.0 license:cc-by-sa4.0 ;; icons, samples
+                   license:cc0 license:bsd-3)))) ;; utilities files
-- 
2.21.0

  parent reply	other threads:[~2019-12-08 16:45 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-08 16:41 [bug#38532] [PATCH 00/11] Add audiofile and KDE mulitmedia applications Hartmut Goebel
2019-12-08 16:43 ` [bug#38532] [PATCH 01/11] gnu: Add audiofile Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 02/11] gnu: Add dragon Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 03/11] gnu: Add juk Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 04/11] gnu: Add k3b Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 05/11] gnu: Add libkcddb Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 06/11] gnu: Add kaffeine Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 07/11] gnu: Add kmix Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 08/11] gnu: Add kmplayer Hartmut Goebel
2019-12-08 16:43   ` Hartmut Goebel [this message]
2019-12-08 16:43   ` [bug#38532] [PATCH 10/11] gnu: Add elisa Hartmut Goebel
2019-12-08 16:43   ` [bug#38532] [PATCH 11/11] gnu: Add kamoso Hartmut Goebel
2019-12-11 14:12 ` [bug#38532] Patches updated Hartmut Goebel
     [not found] ` <handler.38532.B.157582329710947.ack@debbugs.gnu.org>
2019-12-26 15:45   ` bug#38532: Acknowledgement ([PATCH 00/11] Add audiofile and KDE mulitmedia applications.) Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191208164355.7374-9-h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=38532@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).