network/skype: Updated for version 4.0.0.7.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
mario 2012-07-01 10:28:03 -05:00 committed by Robby Workman
parent 771f4e5f74
commit 1b57202636
4 changed files with 19 additions and 13 deletions

View file

@ -3,6 +3,6 @@ It allows users to communicate with other Skype users running any of
the supported platforms, as well as receiving and placing calls from
and to normal land lines and mobile phones.
This script repackages the shared tarball provided by Skype, wich
This script repackages the shared tarball provided by Skype, which
has been built dynamically. For more information on how to repackage
a static version, check README.STATIC wich came with this package.
a static version, check README.STATIC which came with this package.

View file

@ -3,10 +3,14 @@ package, but in some cases a staticly linked one might be preferred.
First, get the skype_static tarball from here:
http://download.skype.com/linux/skype_static-2.2.0.35.tar.bz2
(md5sum: d948b8f04ad27b92297a99bcacc7b00b)
http://download.skype.com/linux/skype_static-4.0.0.7.tar.bz2
(md5sum: f92b977460d9fc4f090c2bf14b692438)
Then run skype.SlackBuild like this:
STATIC=yes ./skype.SlackBuild
Note that the static version requires libtiff.so.4 which does not come
with slackware (yet), so we have to trick it with:
ln -s /usr/lib/libtiff.so /usr/lib/libtiff.so.4
Enjoy :-)

View file

@ -2,7 +2,7 @@
# Slackware build script for skype
# Copyright 2010-2011, mario <mario@slackverse.org>
# Copyright 2010-2012, mario <mario@slackverse.org>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=skype
VERSION=${VERSION:-2.2.0.35}
VERSION=${VERSION:-4.0.0.7}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -38,8 +38,10 @@ STATIC=${STATIC:-no}
if [ "$STATIC" = yes ]; then
SRCNAM=${PRGNAM}_static
TMPNAM=${SRCNAM}QT
else
SRCNAM=$PRGNAM
SRCNAM=$PRGNAM
TMPNAM=$PRGNAM
fi
# Sanity check, we make sure resulting package will work on users system.
@ -67,9 +69,9 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM-$VERSION
rm -rf $TMPNAM-$VERSION
tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
cd $SRCNAM-$VERSION
cd $TMPNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .

View file

@ -1,10 +1,10 @@
PRGNAM="skype"
VERSION="2.2.0.35"
VERSION="4.0.0.7"
HOMEPAGE="http://www.skype.com"
DOWNLOAD="http://download.skype.com/linux/skype-2.2.0.35.tar.bz2"
MD5SUM="b60a19345ee7b3522b5fe4047150aaf8"
DOWNLOAD="http://download.skype.com/linux/skype-4.0.0.7.tar.bz2"
MD5SUM="b57a3a5e178ae40fc96583b7c1851663"
DOWNLOAD_x86_64="UNSUPPORTED"
MD5SUM_x86_64=""
MAINTAINER="mario"
EMAIL="mario@slackverse.org"
APPROVED="pprkut"
APPROVED="rworkman"