gnu: giflib: Return #t from all phases.

* gnu/packages/image.scm (giflib)[arguments]: Return #t from custom phases.
This commit is contained in:
Mark H Weaver 2018-03-17 20:29:53 -04:00
parent d009c44a58
commit 4a3ee3fbb1
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -578,7 +578,8 @@ (define-public giflib
(add-after 'unpack 'disable-html-doc-gen
(lambda _
(substitute* "doc/Makefile.in"
(("^all: allhtml manpages") ""))))
(("^all: allhtml manpages") ""))
#t))
(add-after 'install 'install-manpages
(lambda* (#:key outputs #:allow-other-keys)
(let* ((bin (assoc-ref outputs "bin"))
@ -591,7 +592,8 @@ (define-public giflib
(copy-file file
(string-append
man1dir "/" base))))
(find-files "doc" "\\.1"))))))))
(find-files "doc" "\\.1"))
#t))))))
(synopsis "Tools and library for working with GIF images")
(description
"GIFLIB is a library for reading and writing GIF images. It is API and