network/mew: Updated for version 6.3.51.

Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
vvoody 2011-07-19 12:18:37 -03:00 committed by Robby Workman
parent cc622c7b66
commit 0e8972c67a
3 changed files with 14 additions and 14 deletions

3
network/mew/doinst.sh Normal file
View File

@ -0,0 +1,3 @@
if [ -x /usr/bin/install-info ]; then
chroot . /usr/bin/install-info --info-dir=/usr/info/ /usr/info/mew.info.gz >/dev/null 2>&1
fi

View File

@ -2,19 +2,17 @@
# Slackware build script for Mew
# Written by vvoody <ydoovv@gmail.com>
# Maintained by vvoody <vvoodywang@gmail.com>
PRGNAM=mew
VERSION=6.3.50
BUILD=${BUILD:-1}
VERSION=6.3.51
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
@ -82,10 +80,8 @@ make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
)
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
rm -f $PKG/usr/info/dir
gzip -9 $PKG/usr/info/*
@ -96,6 +92,7 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -1,10 +1,10 @@
PRGNAM="mew"
VERSION="6.3.50"
VERSION="6.3.51"
HOMEPAGE="http://mew.org/"
DOWNLOAD="http://mew.org/Beta/mew-6.3.50.tar.gz"
MD5SUM="e39b67f9f0eaa65696486a1f55ba7edc"
DOWNLOAD="http://mew.org/Beta/mew-6.3.51.tar.gz"
MD5SUM="ef5b0403a0b960534367d2898d11a6f1"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="vvoody"
EMAIL="ydoovv@gmail.com"
APPROVED="dsomero"
EMAIL="vvoodywang@gmail.com"
APPROVED="Niels Horn"