gnu: guile-png: Update to 0.7.1
* gnu/packages/guile-xyz.scm (guile-png): Update to 0.7.1. [arguments]: Update style and delete "strip" phase. [description]: Update. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
8294f45dfc
commit
cdddc6bc28
1 changed files with 9 additions and 6 deletions
|
@ -3856,7 +3856,7 @@ debugging code.")
|
||||||
(define-public guile-png
|
(define-public guile-png
|
||||||
(package
|
(package
|
||||||
(name "guile-png")
|
(name "guile-png")
|
||||||
(version "0.7.0")
|
(version "0.7.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -3865,10 +3865,13 @@ debugging code.")
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0nkim662lb48y8n5hik8rrj76600v2inwaxwnfpdny7h2j0yq1wm"))))
|
"0y65795s9bs69msqvdbq8h34n00bkfs5v1d44wz21nwdffvq6557"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
|
(list
|
||||||
|
#:make-flags #~(list "GUILE_AUTO_COMPILE=0") ;to prevent guild warnings
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'strip))))
|
||||||
(native-inputs (list autoconf
|
(native-inputs (list autoconf
|
||||||
automake
|
automake
|
||||||
pkg-config
|
pkg-config
|
||||||
|
@ -3884,9 +3887,9 @@ debugging code.")
|
||||||
(synopsis "PNG file parsing library for Guile")
|
(synopsis "PNG file parsing library for Guile")
|
||||||
(description
|
(description
|
||||||
"@code{guile-png} is a GNU Guile library for working with the
|
"@code{guile-png} is a GNU Guile library for working with the
|
||||||
@url{https://en.wikipedia.org/wiki/PNG, PNG format}. This library provides
|
@url{https://en.wikipedia.org/wiki/PNG, PNG format}. This library provides API for
|
||||||
API for reading and writing PNG data, as well as some basic image processing
|
reading and writing PNG data, as well as some graphic primitives and basic image
|
||||||
filters.")
|
processing filters.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public nomad
|
(define-public nomad
|
||||||
|
|
Reference in a new issue