From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52168) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieG1M-0003SD-Ic for guix-patches@gnu.org; Mon, 09 Dec 2019 05:12:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieG1K-0000kQ-Q6 for guix-patches@gnu.org; Mon, 09 Dec 2019 05:12:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46657) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieG1K-0000kL-Mn for guix-patches@gnu.org; Mon, 09 Dec 2019 05:12:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieG1K-0002HF-J9 for guix-patches@gnu.org; Mon, 09 Dec 2019 05:12:02 -0500 Subject: [bug#38543] [PATCH 3/3] gnu: Add ffmpegthumbs. Resent-Message-ID: From: Hartmut Goebel Date: Mon, 9 Dec 2019 11:11:10 +0100 Message-Id: <20191209101110.31417-3-h.goebel@crazy-compilers.com> In-Reply-To: <20191209101110.31417-1-h.goebel@crazy-compilers.com> References: <20191209101110.31417-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38543@debbugs.gnu.org * gnu/packages/kde-multimedia.scm (ffmpegthumbs): New variable. --- gnu/packages/kde-multimedia.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm index eaae095e93..4580a31dbd 100644 --- a/gnu/packages/kde-multimedia.scm +++ b/gnu/packages/kde-multimedia.scm @@ -199,6 +199,38 @@ The Baloo one is much faster because Baloo is providing all needed data from its own database. You can build and play your own playlist.") (license license:lgpl3+))) +(define-public ffmpegthumbs + (package + (name "ffmpegthumbs") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/ffmpegthumbs-" version ".tar.xz")) + (sha256 + (base32 "1w6070ng40nf99wpl6p5s8nx0icfx2c26vvnz4f9fx7l7pldh6n9")))) + (properties `((tags . ("Desktop" "KDE" "Multimedia")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("pkg-config" ,pkg-config))) + (inputs + `(("ffmpeg" ,ffmpeg) + ("kconfig" ,kconfig) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("qtbase" ,qtbase))) + (home-page "https://kde.org/applications/multimedia/org.kde.ffmpegthumbs") + (synopsis "Video thumbnail generator for KDE using ffmpeg") + (description " +FFMpegThumbs is a video thumbnail generator for KDE file managers +like Dolphin and Konqueror. It enables them to show preview images +of video files using FFMpeg. + +This package is part of the KDE multimedia module.") + (license license:gpl2+))) + (define-public juk (package (name "juk") -- 2.21.0