network/bitlbee: Updated for version 1.2.5.

This commit is contained in:
Michiel van Wessem 2010-04-14 20:50:47 -04:00 committed by David Somero
parent 6f0574c961
commit a658b3ca97
2 changed files with 9 additions and 7 deletions

View file

@ -1,7 +1,7 @@
#!/bin/sh
# SlackBuild Script for bitlbee
# Copyright 2007-2008 Michiel van Wessem, Manchester, United Kingdom
# Copyright 2007-2010 Michiel van Wessem, Manchester, United Kingdom
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -24,7 +24,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=bitlbee
VERSION=${VERSION:-1.2.4}
VERSION=${VERSION:-1.2.5}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -92,8 +92,10 @@ make all
make install install-etc install-doc DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : |\
xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : |\
xargs strip --strip-unneeded 2> /dev/null || true
)
( cd $PKG/usr/man

View file

@ -1,8 +1,8 @@
PRGNAM="bitlbee"
VERSION="1.2.4"
VERSION="1.2.5"
HOMEPAGE="http://www.bitlbee.org"
DOWNLOAD="http://get.bitlbee.org/src/bitlbee-1.2.4.tar.gz"
MD5SUM="26b9bfc5446bdf0e932e8074d117be67"
DOWNLOAD="http://get.bitlbee.org/src/bitlbee-1.2.5.tar.gz"
MD5SUM="7b5882a6bc1b16d82d2109a99cf92fc5"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Michiel van Wessem"