perl/perl-ExtUtils-ModuleMaker: Updated for version 0.56.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Edinaldo P. Silva 2017-01-31 00:13:04 +00:00 committed by Willy Sudiarto Raharjo
parent 626a6b0096
commit ab7479d8f8
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 9 additions and 10 deletions

View file

@ -1,8 +1,8 @@
#!/bin/sh
#
# Slackware build script for perl-ExtUtils-ModuleMaker.
# Copyright 2015 Edinaldo P. Silva, Rio de Janeiro, Brazil.
#
# Copyright 2015-2017 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=perl-ExtUtils-ModuleMaker
VERSION=${VERSION:-0.55}
VERSION=${VERSION:-0.56}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -31,7 +31,7 @@ SRCNAM="$(printf $PRGNAM | cut -d- -f2-)"
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -42,8 +42,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -76,7 +76,6 @@ perl Makefile.PL \
INSTALLDIRS=vendor \
INSTALLVENDORMAN3DIR=/usr/man/man3
make
#make test
make install DESTDIR=$PKG
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \

View file

@ -1,8 +1,8 @@
PRGNAM="perl-ExtUtils-ModuleMaker"
VERSION="0.55"
VERSION="0.56"
HOMEPAGE="https://metacpan.org/pod/ExtUtils::ModuleMaker"
DOWNLOAD="https://cpan.metacpan.org/authors/id/J/JK/JKEENAN/ExtUtils-ModuleMaker-0.55.tar.gz"
MD5SUM="a68f6c85979d7b1b81473e1f1d8eac34"
DOWNLOAD="https://cpan.metacpan.org/authors/id/J/JK/JKEENAN/ExtUtils-ModuleMaker-0.56.tar.gz"
MD5SUM="043fa147124fcf82731a7a19cb3528bd"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="perl-File-Save-Home"