diff options
author | David Woodfall <dave@dawoodfall.net> | 2011-09-23 08:24:59 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-09-23 08:24:59 -0300 |
commit | f03be1261b698aff7a41cd0ab148222432ec4150 (patch) | |
tree | c9198cd81fd19d7b1695d7ab5fc7714627f90958 /network/ekiga/ekiga.SlackBuild | |
parent | 9d37cb0ba5765be027786d7db970aa332261d5fd (diff) | |
download | slackbuilds-f03be1261b698aff7a41cd0ab148222432ec4150.tar.gz |
network/ekiga: Updated for version 3.2.7 (+new maintainer)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/ekiga/ekiga.SlackBuild')
-rw-r--r-- | network/ekiga/ekiga.SlackBuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/network/ekiga/ekiga.SlackBuild b/network/ekiga/ekiga.SlackBuild index 48fdca4faa..7b49b5ccee 100644 --- a/network/ekiga/ekiga.SlackBuild +++ b/network/ekiga/ekiga.SlackBuild @@ -2,7 +2,9 @@ # Slackware build script for Ekiga -# Copyright 2008-2009 Mauro Giachero (mauro dot giachero at gmail dot com) +# Copyright 2008-2009 Mauro Giachero +# All rights reserved. +# Copyright 2011 Davd Woodfall <dave@dawoodfall.net> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,16 +25,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ekiga -VERSION=${VERSION:-3.2.6} -BUILD=${BUILD:-3} +VERSION=${VERSION:-3.2.7} +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 @@ -140,10 +140,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 || exit 1 - 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a [A-CE-LN-Z]* MAINTAINERS doc/* $PKG/usr/doc/$PRGNAM-$VERSION @@ -151,6 +149,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 -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |