mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
perl/perl-glib: Updated for version 1.305 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
a2945bc977
commit
7edc2074f0
2 changed files with 14 additions and 14 deletions
|
@ -6,6 +6,8 @@
|
|||
# Copyright 2010, 2012 Binh Nguyen <binhvng@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Updated for version 1.305 Glenn Becker <burningc@sdf.org>
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
|
@ -24,7 +26,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=perl-glib
|
||||
VERSION=${VERSION:-1.302}
|
||||
VERSION=${VERSION:-1.305}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -67,10 +69,10 @@ tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
|
|||
cd $SRCNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
perl Makefile.PL \
|
||||
OPTIMIZE="$SLKCFLAGS" \
|
||||
|
@ -81,21 +83,19 @@ make
|
|||
make test
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
# Remove perllocal.pod and other special files that don't need to be installed,
|
||||
# as they will overwrite what's already on the system
|
||||
find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true
|
||||
|
||||
# Remove empty directories
|
||||
find $PKG -depth -type d -empty -delete || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS ChangeLog* LICENSE NEWS README TODO \
|
||||
$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
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="perl-glib"
|
||||
VERSION="1.302"
|
||||
VERSION="1.305"
|
||||
HOMEPAGE="http://search.cpan.org/dist/Glib/"
|
||||
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/Glib-1.302.tar.gz"
|
||||
MD5SUM="c9ba2ef9c1121d5d2e5f99005c4dd4db"
|
||||
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/Glib-1.305.tar.gz"
|
||||
MD5SUM="75a5d3a93fa8ec8e804a344a2a65507f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="perl-extutils-depends perl-extutils-pkgconfig"
|
||||
MAINTAINER="Binh Nguyen"
|
||||
EMAIL="binhvng@gmail.com"
|
||||
MAINTAINER="Glenn Becker"
|
||||
EMAIL="burningc@sdf.org"
|
||||
|
|
Loading…
Reference in a new issue