perl/perl-Inline-C: Switch to i586 + new maintainer.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Andreas Guldstrand 2017-01-18 21:00:55 +00:00 committed by Willy Sudiarto Raharjo
parent 7eff6b964b
commit b54d897297
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 11 additions and 11 deletions

View file

@ -1,13 +1,13 @@
Inline::C is a module that allows you to write Perl subroutines in C. Since
version 0.30 the Inline module supports multiple programming languages and
each language has its own support module. This document describes how to use
Inline with the C programming language. It also goes a bit into Perl C
Inline::C is a module that allows you to write Perl subroutines in C. Since
version 0.30 the Inline module supports multiple programming languages and
each language has its own support module. This document describes how to use
Inline with the C programming language. It also goes a bit into Perl C
internals.
If you want to start working with programming examples right away, check out
If you want to start working with programming examples right away, check out
Inline::C::Cookbook. For more information on Inline in general, see Inline.
USAGE
You never actually use Inline::C directly. It is just a support module for
You never actually use Inline::C directly. It is just a support module for
using Inline.pm with C.

View file

@ -32,7 +32,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
@ -43,8 +43,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"

View file

@ -6,5 +6,5 @@ MD5SUM="c0fbfdd058075c9271a1384c822c9a87"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="perl-Inline perl-IO-All perl-Pegex perl-File-Copy-Recursive perl-extutils-makemaker"
MAINTAINER="Glenn Becker"
EMAIL="glenn.becker@gmail.com"
MAINTAINER="Andreas Guldstrand"
EMAIL="andreas.guldstrand@gmail.com"