gnu: giflib: Return #t from all phases.
* gnu/packages/image.scm (giflib)[arguments]: Return #t from custom phases.
This commit is contained in:
parent
d009c44a58
commit
4a3ee3fbb1
|
@ -578,7 +578,8 @@ error-resilience, a Java-viewer for j2k-images, ...")
|
||||||
(add-after 'unpack 'disable-html-doc-gen
|
(add-after 'unpack 'disable-html-doc-gen
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "doc/Makefile.in"
|
(substitute* "doc/Makefile.in"
|
||||||
(("^all: allhtml manpages") ""))))
|
(("^all: allhtml manpages") ""))
|
||||||
|
#t))
|
||||||
(add-after 'install 'install-manpages
|
(add-after 'install 'install-manpages
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((bin (assoc-ref outputs "bin"))
|
(let* ((bin (assoc-ref outputs "bin"))
|
||||||
|
@ -591,7 +592,8 @@ error-resilience, a Java-viewer for j2k-images, ...")
|
||||||
(copy-file file
|
(copy-file file
|
||||||
(string-append
|
(string-append
|
||||||
man1dir "/" base))))
|
man1dir "/" base))))
|
||||||
(find-files "doc" "\\.1"))))))))
|
(find-files "doc" "\\.1"))
|
||||||
|
#t))))))
|
||||||
(synopsis "Tools and library for working with GIF images")
|
(synopsis "Tools and library for working with GIF images")
|
||||||
(description
|
(description
|
||||||
"GIFLIB is a library for reading and writing GIF images. It is API and
|
"GIFLIB is a library for reading and writing GIF images. It is API and
|
||||||
|
|
Loading…
Reference in New Issue