summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Famulari <[email protected]>2018-02-26 17:01:54 -0500
committerLeo Famulari <[email protected]>2018-02-26 17:05:46 -0500
commitbc806b0c122a80d2df2e0b7ad7dae9b4160a2647 (patch)
treed9908cfe0162c54eec9bff822b9fd33e83f63fd1
parent5815e3bc943b380b647ecb6c147cef0c015f853c (diff)
gnu: Add libiptcdata.
* gnu/packages/image.scm (libiptcdata): New variable.
-rw-r--r--gnu/packages/image.scm24
1 files changed, 22 insertions, 2 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 5943457f94..e3e3a3ccc7 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -7,8 +7,7 @@
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <[email protected]>
;;; Copyright © 2015 Amirouche Boubekki <[email protected]>
;;; Copyright © 2014, 2017 John Darrington <[email protected]>
-;;; Copyright © 2016 Leo Famulari <[email protected]>
-;;; Copyright © 2016, 2017 Leo Famulari <[email protected]>
+;;; Copyright © 2016, 2017, 2018 Leo Famulari <[email protected]>
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <[email protected]>
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2016 Eric Bavier <[email protected]>
@@ -1230,3 +1229,24 @@ medical image data, e.g. magnetic resonance image (MRI) and functional MRI
(synopsis "Color picker")
(description "Gpick is an advanced color picker and palette editing tool.")
(license license:bsd-3)))
+
+(define-public libiptcdata
+ (package
+ (name "libiptcdata")
+ (version "1.0.4")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/" name "/" name "/"
+ version "/" name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "03pfvkmmx762iydq0q207x2028d275pbdysfsgpmrr0ywy63pxkr"))))
+ (build-system gnu-build-system)
+ (home-page "http://libiptcdata.sourceforge.net/")
+ (synopsis "IPTC metadata manipulation library")
+ (description "Libiptcdata is a C library for manipulating the International
+Press Telecommunications Council (IPTC) metadata stored within multimedia files
+such as images. This metadata can include captions and keywords, often used by
+popular photo management applications. The library provides routines for
+parsing, viewing, modifying, and saving this metadata.")
+ (license license:lgpl2.0+)))