mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
graphics/PerlMagick: Removed (included in Slackware)
From: Klaatu <klaatu@straightedgelinux.com> Date: Tue, 18 Sep 2012 11:56:37 -0400 > Admins, you can strike PerlMagick from Checklist.txt as it's no > longer needed as an SBo build; it is included in Slackware 14 > (see /usr/lib/perl5/vendor_perl/Image/Magick) Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
e0b482ae3c
commit
02f1a62d30
4 changed files with 0 additions and 116 deletions
|
@ -1,82 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for PerlMagick
|
||||
|
||||
# Written by klaatu at hackerpublicradio.org
|
||||
|
||||
PRGNAM=PerlMagick
|
||||
VERSION=${VERSION:-6.67}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
x86_64) ARCH=x86_64 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
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
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -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 \
|
||||
INSTALLMAN3DIR=/usr/man \
|
||||
INSTALLSITEMAN3DIR=/usr/man \
|
||||
INSTALLVENDORMAN3DIR=/usr/man
|
||||
|
||||
make
|
||||
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
|
||||
|
||||
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
|
||||
rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/perl5/5.12.3/
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
Changelog MANIFEST MANIFEST.SKIP README.txt \
|
||||
$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}
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="PerlMagick"
|
||||
VERSION="6.67"
|
||||
HOMEPAGE="homepage of application"
|
||||
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/J/JC/JCRISTY/PerlMagick-6.67.tar.gz"
|
||||
MD5SUM="c786005a73db46ea056082811b9fed3d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="klaatu"
|
||||
EMAIL="klaatu@hackerpublicradio.org"
|
|
@ -1,6 +0,0 @@
|
|||
Image::Magick is an objected-oriented Perl interface to ImageMagick.
|
||||
Use it to read, manipulate, or write an image or image sequence from
|
||||
within a Perl script.
|
||||
|
||||
Installing this via CPAN fails due to customizations needed in the
|
||||
Makefile; this SlackBuild script circumvents those issues.
|
|
@ -1,18 +0,0 @@
|
|||
# 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------------------------------------------------------|
|
||||
PerlMagick: PerlMagick (Perl frontend to Image Magick)
|
||||
PerlMagick:
|
||||
PerlMagick: PerlMagick is an object-oriented Perl interface to Image Magick.
|
||||
PerlMagick: Use it to read, manipulate, or write an image or image sequence
|
||||
PerlMagick: from within a Perl script.
|
||||
PerlMagick:
|
||||
PerlMagick: http://search.cpan.org/~jcristy/PerlMagick-6.67/Magick.pm
|
||||
PerlMagick:
|
||||
PerlMagick: http://www.imagemagick.org/script/perl-magick.php
|
||||
PerlMagick:
|
Loading…
Reference in a new issue