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
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue