mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libiptcdata.
* gnu/packages/image.scm (libiptcdata): New variable.
This commit is contained in:
parent
5815e3bc94
commit
bc806b0c12
1 changed files with 22 additions and 2 deletions
|
@ -7,8 +7,7 @@
|
|||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||
;;; Copyright © 2015 Amirouche Boubekki <amirouche@hypermove.net>
|
||||
;;; Copyright © 2014, 2017 John Darrington <jmd@gnu.org>
|
||||
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2016, 2017, 2018 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
|
||||
|
@ -1230,3 +1229,24 @@ (define-public gpick
|
|||
(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+)))
|
||||
|
|
Loading…
Reference in a new issue