development/geany: Updated for version 0.20.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Michiel van Wessem 2011-01-11 18:59:33 -06:00 committed by Robby Workman
parent 851d75a5f8
commit bea5266ea5
2 changed files with 8 additions and 10 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for Geany
# Written by Evan Hisey <ehisey@gmail.com>
# Copyright 2009-2010 Michiel van Wessem, Manchester, United Kingdom
# Copyright 2009-2011 Michiel van Wessem, Manchester, United Kingdom
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -25,7 +25,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=geany
VERSION=${VERSION:-0.19.2}
VERSION=${VERSION:-0.20}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -42,7 +42,7 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# Enable support for global tags. Make sure there are any .tags files in $CWD.
# Enable support for global tags - make sure any .tags files are in $CWD.
TAGS=${TAGS:-no}
if [ "$ARCH" = "i486" ]; then
@ -91,10 +91,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
# Add global support for tags:
if [ "$TAGS" = "yes" ]; then

View file

@ -1,8 +1,8 @@
PRGNAM="geany"
VERSION="0.19.2"
VERSION="0.20"
HOMEPAGE="http://www.geany.org/"
DOWNLOAD="http://download.geany.org/geany-0.19.2.tar.bz2"
MD5SUM="fd12c814606659eefdf67d070f2638a6"
DOWNLOAD="http://download.geany.org/geany-0.20.tar.bz2"
MD5SUM="3bd152a7a3a2adc2833a9245e230da3d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Michiel van Wessem"