mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: perl-image-magick: Return #t from all phases.
* gnu/packages/imagemagick.scm (perl-image-magick)[arguments]: Return #t from the 'image-magick-flags' and 'skip-mpeg-tests' phases.
This commit is contained in:
parent
a440d01ae0
commit
173b647fa5
1 changed files with 4 additions and 2 deletions
|
@ -146,7 +146,8 @@ (define-public perl-image-magick
|
|||
(("my \\$INC_magick = .*")
|
||||
"my $INC_magick = `pkg-config --cflags ImageMagick`;\n")
|
||||
(("my \\$LIBS_magick = .*")
|
||||
"my $LIBS_magick = `pkg-config --libs ImageMagick`;\n")))))
|
||||
"my $LIBS_magick = `pkg-config --libs ImageMagick`;\n"))
|
||||
#t)))
|
||||
(add-before
|
||||
'check 'skip-mpeg-tests
|
||||
(lambda _
|
||||
|
@ -154,7 +155,8 @@ (define-public perl-image-magick
|
|||
;; MPEG. Has been reported elsewhere,
|
||||
;; http://www.imagemagick.org/discourse-server/viewtopic.php?f=7&t=25036,
|
||||
;; so skip for now.
|
||||
(delete-file "t/mpeg/read.t"))))))
|
||||
(delete-file "t/mpeg/read.t")
|
||||
#t)))))
|
||||
(home-page "http://search.cpan.org/dist/PerlMagick")
|
||||
(synopsis "Perl interface to ImageMagick")
|
||||
(description "This Perl extension allows the reading, manipulation and
|
||||
|
|
Loading…
Reference in a new issue