summaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
author Glenn Becker <burningc@sdf.org>2014-12-24 11:22:01 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-12-24 11:22:01 +0700
commit7cbd140e949989c30a791fe406057cdcad29c12f (patch)
tree3ecf7513d0ae36e3679049c3575db3c96d58c9bc /perl
parentdad9bf344d09aec554a1048c53d2d88575228a75 (diff)
downloadslackbuilds-7cbd140e949989c30a791fe406057cdcad29c12f.tar.gz
slackbuilds-7cbd140e949989c30a791fe406057cdcad29c12f.tar.xz
perl/perl-html-form: New maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'perl')
-rw-r--r--perl/perl-html-form/perl-html-form.SlackBuild13
-rw-r--r--perl/perl-html-form/perl-html-form.info4
2 files changed, 10 insertions, 7 deletions
diff --git a/perl/perl-html-form/perl-html-form.SlackBuild b/perl/perl-html-form/perl-html-form.SlackBuild
index 9b9ab50c06..1348a33216 100644
--- a/perl/perl-html-form/perl-html-form.SlackBuild
+++ b/perl/perl-html-form/perl-html-form.SlackBuild
@@ -5,6 +5,8 @@
# Copyright 2012 Binh Nguyen <binhvng@gmail.com>
# All rights reserved.
#
+# Adopted 2014 Glenn Becker <burningc@sdf.org>
+#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
@@ -66,10 +68,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 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -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 {} \;
perl Makefile.PL \
OPTIMIZE="$SLKCFLAGS" \
@@ -80,10 +82,11 @@ 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
diff --git a/perl/perl-html-form/perl-html-form.info b/perl/perl-html-form/perl-html-form.info
index 73063e775a..062e37554a 100644
--- a/perl/perl-html-form/perl-html-form.info
+++ b/perl/perl-html-form/perl-html-form.info
@@ -6,5 +6,5 @@ MD5SUM="fa6c2680207ed4fef5ea2ef09c210614"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="perl-http-message"
-MAINTAINER="Binh Nguyen"
-EMAIL="binhvng@gmail.com"
+MAINTAINER="Glenn Becker"
+EMAIL="burningc@sdf.org"