[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: Add libkexiv2.
From: |
guix-commits |
Subject: |
03/03: gnu: Add libkexiv2. |
Date: |
Sat, 12 Dec 2020 18:07:10 -0500 (EST) |
lfam pushed a commit to branch master
in repository guix.
commit fdfa25ed7b993597993f0afb355d1da928143e17
Author: Zheng Junjie <873216071@qq.com>
AuthorDate: Sat Dec 12 14:38:20 2020 -0500
gnu: Add libkexiv2.
* gnu/packages/kde.scm (libkexiv2): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/packages/kde.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index fff84ba..3a15aa6 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -788,6 +788,30 @@ Python, PHP, and Perl.")
(description "This package provides a KDE plugin that shows thumbnails of
Mobipocket e-books in Dolphin and other KDE apps.")
(license license:gpl2+)))
+
+(define-public libkexiv2
+ (package
+ (name "libkexiv2")
+ (version "20.12.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/" name "-" version ".tar.xz"))
+ (sha256
+ (base32 "0k0iinf7s8qlk3fwvq7iic1b4zn2gm65rfd58q7d3wb1i1j2hjjk"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("exiv2" ,exiv2)
+ ("qtbase" ,qtbase)))
+ (home-page "https://invent.kde.org/graphics/libkexiv2")
+ (synopsis "Manipulate the metadata of images")
+ (description "Libkexiv2 wraps the Exiv2 library, allowing to manipulate
+picture metadata as EXIF/IPTC and XMP.")
+ (license license:gpl2+)))
+
(define-public zeroconf-ioslave
(package
(name "zeroconf-ioslave")