libraries/perl-glib: Updated for version 1.161

This commit is contained in:
Michael Wagner 2010-05-13 00:32:47 +02:00 committed by Robby Workman
parent beacb298a3
commit 2d488cb205
3 changed files with 21 additions and 16 deletions

View file

@ -1,9 +1,5 @@
Glib (perl module)
This module provides perl access to Glib and GLib's
GObject libraries.
This module provides perl access to Glib and GLib's GObject libraries.
In order to build it from source, you'll also need
ExtUtils::Depends >= 0.200 (perl-extutils-depends)
ExtUtils::PkgConfig >= 1.00 (perl-extutils-pkgconfig)
Both of these are also available from SlackBuilds.org.
This requires perl-extutils-depends and perl-extutils-pkgconfig.

View file

@ -34,26 +34,31 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
DOCS="AUTHORS ChangeLog LICENSE NEWS README TODO"
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1
cd $TMP
rm -rf $SRCNAM-$VERSION
tar -xzvf $CWD/$SRCNAM-$VERSION.tar.gz || exit 1
cd $SRCNAM-$VERSION || exit 1
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
cd $SRCNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
perl Makefile.PL || exit 1
make OPTIMIZE="$SLKCFLAGS" || exit 1
make install INSTALLDIRS=vendor DESTDIR=$PKG || exit 1
perl Makefile.PL
make OPTIMIZE="$SLKCFLAGS"
make install INSTALLDIRS=vendor DESTDIR=$PKG
find $PKG -name $SRCNAM.so -exec strip --strip-unneeded $PKG 2> /dev/null {} \;
@ -70,7 +75,9 @@ gzip -9 $PKG/usr/man/man3/* 2> /dev/null
find $PKG -depth -type d -empty -exec rm -rf {} \;
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
AUTHORS ChangeLog LICENSE NEWS README TODO \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
@ -78,4 +85,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -2,7 +2,9 @@ PRGNAM="perl-glib"
VERSION="1.161"
HOMEPAGE="http://gtk2-perl.sourceforge.net"
DOWNLOAD="http://downloads.sourceforge.net/gtk2-perl/Glib-1.161.tar.gz"
DOWNLOAD_x86_64=""
MD5SUM="275735cf9aebf4f9fbd9270fe0bee154"
MD5SUM_x86_64=""
MAINTAINER="Michael Wagner"
EMAIL="lapinours@web.de"
APPROVED="rworkman"