mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
perl/perl-Template-Toolkit: Updated for version 2.26.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
3f2fcf2fba
commit
8e8a63c387
2 changed files with 11 additions and 13 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
SRCNAM=Template-Toolkit
|
||||
PRGNAM=perl-$SRCNAM
|
||||
VERSION=${VERSION:-2.25}
|
||||
VERSION=${VERSION:-2.26}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -46,10 +46,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 \
|
||||
TT_ACCEPT=y \
|
||||
|
@ -62,7 +62,7 @@ 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 {} \;
|
||||
|
@ -72,9 +72,7 @@ find $PKG -name "perllocal.pod" -o -name ".packlist" -o -name "*.bs" -empty | xa
|
|||
find $PKG -depth -type d -empty -delete || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
Changes HACKING INSTALL MANIFEST README TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a Changes HACKING INSTALL MANIFEST README TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="perl-Template-Toolkit"
|
||||
VERSION="2.25"
|
||||
HOMEPAGE="https://metacpan.org/pod/Template::Toolkit"
|
||||
DOWNLOAD="http://www.cpan.org/authors/id/A/AB/ABW/Template-Toolkit-2.25.tar.gz"
|
||||
MD5SUM="6be78743caf5fafe8de4a17c2d0c72ff"
|
||||
VERSION="2.26"
|
||||
HOMEPAGE="http://search.cpan.org/~abw/Template-Toolkit/"
|
||||
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/A/AB/ABW/Template-Toolkit-2.26.tar.gz"
|
||||
MD5SUM="4c289856ebee446ebbe2629b24f0734b"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="perl-AppConfig"
|
||||
|
|
Loading…
Reference in a new issue