diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2011-05-31 23:56:54 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-06-13 01:33:40 -0400 |
commit | a70f7b47028bf93cf387aaa64a31d88911b02de7 (patch) | |
tree | 7bcaca65ffeadd6472e7d83abdc0e96aac1dac80 /perl/perl-Test-Pod/perl-Test-Pod.SlackBuild | |
parent | aa456795c368b7fa9010f87e719dace4b039f915 (diff) | |
download | slackbuilds-a70f7b47028bf93cf387aaa64a31d88911b02de7.tar.gz |
perl/perl-Test-Pod: Updated for version 1.45.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'perl/perl-Test-Pod/perl-Test-Pod.SlackBuild')
-rw-r--r-- | perl/perl-Test-Pod/perl-Test-Pod.SlackBuild | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/perl/perl-Test-Pod/perl-Test-Pod.SlackBuild b/perl/perl-Test-Pod/perl-Test-Pod.SlackBuild index 793b57248e..17df2e5df6 100644 --- a/perl/perl-Test-Pod/perl-Test-Pod.SlackBuild +++ b/perl/perl-Test-Pod/perl-Test-Pod.SlackBuild @@ -3,15 +3,15 @@ # Slackware Package Build Script for perl modules: Test::POD # Home Page http://search.cpan.org/dist/Test-Pod/ -# Copyright (c) 2008-2010, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net) +# Copyright (c) 2008-2011, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net) # All rights reserved. -# + # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: -# + # 1. Redistributions of script must retain the above copyright notice, # this list of conditions and the following disclaimer. -# + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR @@ -23,9 +23,11 @@ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Modified by the SlackBuilds.org project. PRGNAM=perl-Test-Pod -VERSION=1.44 +VERSION=${VERSION:-1.45} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -60,19 +62,26 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ perl Build.PL prefix=/usr installdirs=vendor destdir=$PKG ./Build ./Build test ./Build install +### putting essential docs mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +# Remove perlocal.pod and .packlist from $PKG +find $PKG -name "perllocal.pod" -o -name ".packlist" -o -name "*.bs" | xargs rm -f + mv $PKG/usr/share/man $PKG/usr/man 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 -find $PKG -name "perllocal.pod" -o -name ".packlist" -o -name "*.bs" | xargs rm -f +# Remove empty directories find $PKG -depth -type d -empty -exec rm -rf {} \; mkdir -p $PKG/install |