mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
perl/perl-Ogg-Vorbis-Header-PurePerl: Fix build with perl-5.22.
Signed-off-by: David Spencer <baildon.research@googlemail.com> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
c098292a90
commit
bbe0416592
2 changed files with 26 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
||||||
|
--- /home/jkeenan/Downloads/Ogg-Vorbis-Header-PurePerl-1.0/test.pl 2007-01-04 17:12:23.000000000 -0500
|
||||||
|
+++ ./test.pl 2015-04-06 21:44:12.970890513 -0400
|
||||||
|
@@ -19,16 +19,16 @@
|
||||||
|
# Try all the routines
|
||||||
|
ok($ogg->info->{'rate'} == 44100);
|
||||||
|
ok($ogg->comment_tags);
|
||||||
|
-ok(@{$ogg->comment('artist')}->[0] == 'maloi');
|
||||||
|
+ok($ogg->comment('artist')->[0] == 'maloi');
|
||||||
|
|
||||||
|
$ogg = 0;
|
||||||
|
|
||||||
|
# See if full load works
|
||||||
|
ok(my $ogg = Ogg::Vorbis::Header::PurePerl->new('test.ogg'));
|
||||||
|
-ok(@{$ogg->comment('artist')}->[0] == 'maloi');
|
||||||
|
+ok($ogg->comment('artist')->[0] == 'maloi');
|
||||||
|
|
||||||
|
# and see if we can get comments including the '=' character
|
||||||
|
-ok(@{$ogg->comment('album')}->[0] == 'this=that');
|
||||||
|
+ok($ogg->comment('album')->[0] == 'this=that');
|
||||||
|
|
||||||
|
# Make sure we're getting the right track length
|
||||||
|
ok($ogg->info->{'length'} == 0);
|
|
@ -52,6 +52,10 @@ find -L . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
|
# Fix for perl-5.22
|
||||||
|
# https://rt.cpan.org/Public/Bug/Display.html?id=96578
|
||||||
|
patch -p1 < $CWD/eliminate_deprecated_use_of_array_as_reference_rt_cpan_org_96578.diff
|
||||||
|
|
||||||
perl Makefile.PL \
|
perl Makefile.PL \
|
||||||
PREFIX=/usr \
|
PREFIX=/usr \
|
||||||
INSTALLDIRS=vendor \
|
INSTALLDIRS=vendor \
|
||||||
|
|
Loading…
Reference in a new issue