mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
perl/perl-CPAN-Changes: Added (Perl Module).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
07f220e925
commit
10875bc6d1
4 changed files with 101 additions and 0 deletions
10
perl/perl-CPAN-Changes/README
Normal file
10
perl/perl-CPAN-Changes/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
It is standard practice to include a Changes file in your distribution. The
|
||||
purpose the Changes file is to help a user figure out what has changed since
|
||||
the last release.
|
||||
|
||||
People have devised many ways to write the Changes file. A preliminary
|
||||
specification has been created (CPAN::Changes::Spec) to encourage module
|
||||
authors to write clear and concise Changes.
|
||||
|
||||
This module will help users programmatically read and write Changes files that
|
||||
conform to the specification.
|
62
perl/perl-CPAN-Changes/perl-CPAN-Changes.SlackBuild
Normal file
62
perl/perl-CPAN-Changes/perl-CPAN-Changes.SlackBuild
Normal file
|
@ -0,0 +1,62 @@
|
|||
#!/bin/sh
|
||||
|
||||
PRGNAM=perl-CPAN-Changes
|
||||
VERSION=${VERSION:-0.27}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
SRCNAM="$(printf $PRGNAM | cut -d- -f2-)"
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SRCNAM-$VERSION
|
||||
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 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
perl Makefile.PL \
|
||||
PREFIX=/usr \
|
||||
INSTALLDIRS=vendor \
|
||||
INSTALLVENDORMAN1DIR=/usr/man/man1 \
|
||||
INSTALLVENDORMAN3DIR=/usr/man/man3
|
||||
make
|
||||
make test
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
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 || true
|
||||
|
||||
find $PKG -depth -type d -empty -delete || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a Changes README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
perl/perl-CPAN-Changes/perl-CPAN-Changes.info
Normal file
10
perl/perl-CPAN-Changes/perl-CPAN-Changes.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="perl-CPAN-Changes"
|
||||
VERSION="0.27"
|
||||
HOMEPAGE="http://search.cpan.org/dist/CPAN-Changes/"
|
||||
DOWNLOAD="http://cpan.metacpan.org/authors/id/B/BR/BRICAS/CPAN-Changes-0.27.tar.gz"
|
||||
MD5SUM="b9d5b5cc6422793907324fc05087e9e4"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="LEVAI Daniel"
|
||||
EMAIL="leva@ecentrum.hu"
|
19
perl/perl-CPAN-Changes/slack-desc
Normal file
19
perl/perl-CPAN-Changes/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
perl-CPAN-Changes: perl-CPAN-Changes (read and write Changes files)
|
||||
perl-CPAN-Changes:
|
||||
perl-CPAN-Changes: This module will help users programmatically read and write Changes
|
||||
perl-CPAN-Changes: files that conform to the specification.
|
||||
perl-CPAN-Changes:
|
||||
perl-CPAN-Changes: Homepage: http://search.cpan.org/dist/CPAN-Changes/
|
||||
perl-CPAN-Changes:
|
||||
perl-CPAN-Changes:
|
||||
perl-CPAN-Changes:
|
||||
perl-CPAN-Changes:
|
||||
perl-CPAN-Changes:
|
Loading…
Reference in a new issue