summaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
author LEVAI Daniel2013-11-30 20:14:18 +0100
committer Willy Sudiarto Raharjo2013-12-01 07:00:57 +0100
commit550242fc2772fed29da98163021bca912080d35f (patch)
tree90450c481274ae61f1adfc8b62728da1286322ed /perl
parent8c4ce253dbf1b7361a5a0bbaa6ec9be263d939c5 (diff)
downloadslackbuilds-550242fc2772fed29da98163021bca912080d35f.tar.gz
perl/perl-Readonly: Updated for version 1.04.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'perl')
-rw-r--r--perl/perl-Readonly/README2
-rw-r--r--perl/perl-Readonly/perl-Readonly.SlackBuild71
-rw-r--r--perl/perl-Readonly/perl-Readonly.info8
-rw-r--r--perl/perl-Readonly/slack-desc8
4 files changed, 46 insertions, 43 deletions
diff --git a/perl/perl-Readonly/README b/perl/perl-Readonly/README
index 721e66b0c6..0b1e1eba28 100644
--- a/perl/perl-Readonly/README
+++ b/perl/perl-Readonly/README
@@ -1,4 +1,4 @@
-perl-Readonly (Facility for creating read-only scalars, arrays, hashes.)
+perl-Readonly (Facility for creating read-only scalars, arrays, hashes)
This is a facility for creating non-modifiable variables. This is
useful for configuration files, headers, etc. It can also be useful
as a development and debugging tool, for catching updates to variables
diff --git a/perl/perl-Readonly/perl-Readonly.SlackBuild b/perl/perl-Readonly/perl-Readonly.SlackBuild
index 97cc8f9e36..1598dff32c 100644
--- a/perl/perl-Readonly/perl-Readonly.SlackBuild
+++ b/perl/perl-Readonly/perl-Readonly.SlackBuild
@@ -1,11 +1,29 @@
#!/bin/sh
-# Slackware build script for <appname>
-
-# Written by (your name) (your contact information)
+# Slackware build script for perl-Readonly
+
+# Copyright 2013 LEVAI Daniel <leva@ecentrum.hu>
+# 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 this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 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.
PRGNAM=perl-Readonly
-VERSION=${VERSION:-1.03}
+VERSION=${VERSION:-1.04}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -24,20 +42,6 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-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"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
set -e
rm -rf $PKG
@@ -48,21 +52,20 @@ 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 {} \;
-
-perl Makefile.PL \
- PREFIX=/usr \
- INSTALLDIRS=vendor \
- INSTALLVENDORMAN3DIR=/usr/man/man3
-make
-make test
-make install DESTDIR=$PKG
-
-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
+ \( -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 Build.PL \
+ prefix=/usr \
+ installdirs=vendor \
+ destdir=$PKG
+./Build
+./Build test
+./Build install \
+ --install_path bindoc=/usr/man/man1 \
+ --install_path libdoc=/usr/man/man3
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
@@ -73,7 +76,7 @@ find $PKG -depth -type d -empty -delete || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
- README Changes \
+ README.md Changes \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
diff --git a/perl/perl-Readonly/perl-Readonly.info b/perl/perl-Readonly/perl-Readonly.info
index 07f491d5c9..c302996050 100644
--- a/perl/perl-Readonly/perl-Readonly.info
+++ b/perl/perl-Readonly/perl-Readonly.info
@@ -1,8 +1,8 @@
PRGNAM="perl-Readonly"
-VERSION="1.03"
-HOMEPAGE="http://search.cpan.org/~roode/Readonly-1.03/"
-DOWNLOAD="http://search.cpan.org/CPAN/authors/id/R/RO/ROODE/Readonly-1.03.tar.gz"
-MD5SUM="0acef3a995ac9ecf575f66a726d638f4"
+VERSION="1.04"
+HOMEPAGE="http://search.cpan.org/dist/Readonly/"
+DOWNLOAD="http://search.cpan.org/CPAN/authors/id/S/SA/SANKO/Readonly-1.04.tar.gz"
+MD5SUM="875c911ed43d0ecf2c5abed60ee6ae18"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
diff --git a/perl/perl-Readonly/slack-desc b/perl/perl-Readonly/slack-desc
index a3b36bc589..17c86b3374 100644
--- a/perl/perl-Readonly/slack-desc
+++ b/perl/perl-Readonly/slack-desc
@@ -6,14 +6,14 @@
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
-perl-Readonly: perl-Readonly (Facility for creating non-modifiable variables)
+perl-Readonly: perl-Readonly (Facility for creating read-only scalars, arrays, hashes)
perl-Readonly:
perl-Readonly: This is a facility for creating non-modifiable variables. This is
perl-Readonly: useful for configuration files, headers, etc. It can also be useful
-perl-Readonly: as a development and debugging tool, for catching updates to variables
-perl-Readonly: that should not be changed.
-perl-Readonly:
+perl-Readonly: as a development and debugging tool, for catching updates to
+perl-Readonly: variables that should not be changed.
perl-Readonly:
+perl-Readonly: Homepage: http://search.cpan.org/dist/Readonly/
perl-Readonly:
perl-Readonly:
perl-Readonly: