mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
perl/perl-Inline-C: Switch to i586 + new maintainer.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
7eff6b964b
commit
b54d897297
3 changed files with 11 additions and 11 deletions
|
@ -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.
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue