summaryrefslogtreecommitdiffstats
path: root/system/rxvt-unicode/rxvt-unicode.SlackBuild
diff options
context:
space:
mode:
author Daniel LEVAI <leva@ecentrum.hu>2010-04-22 17:49:25 -0500
committer Erik Hanson <erik@slackbuilds.org>2010-05-15 10:50:19 +0200
commita4139882bc0b4f7ded794020cfb59a98df52ad68 (patch)
tree35dae518a1039d6a490aeb47511ad2c64af4f117 /system/rxvt-unicode/rxvt-unicode.SlackBuild
parent7ec62a23036e39ab58d5ab01df8b48312cfe9c6a (diff)
downloadslackbuilds-a4139882bc0b4f7ded794020cfb59a98df52ad68.tar.gz
slackbuilds-a4139882bc0b4f7ded794020cfb59a98df52ad68.tar.xz
system/rxvt-unicode: Updated for version 9.07.
Thanks to new maintainer Daniel LEVAI.
Diffstat (limited to 'system/rxvt-unicode/rxvt-unicode.SlackBuild')
-rw-r--r--system/rxvt-unicode/rxvt-unicode.SlackBuild20
1 files changed, 8 insertions, 12 deletions
diff --git a/system/rxvt-unicode/rxvt-unicode.SlackBuild b/system/rxvt-unicode/rxvt-unicode.SlackBuild
index be09e1341c..6962f4e923 100644
--- a/system/rxvt-unicode/rxvt-unicode.SlackBuild
+++ b/system/rxvt-unicode/rxvt-unicode.SlackBuild
@@ -5,6 +5,8 @@
# Written by Dugan Chen (dugan_c@fastmail.fm)
# All rights reserved.
#
+# Maintained by Daniel LEVAI <leva@ecentrum.hu>, 2010
+#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
@@ -23,9 +25,9 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=rxvt-unicode
-VERSION="9.06"
+VERSION="9.07"
ARCH=${ARCH:-i486}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
@@ -100,17 +102,11 @@ make
mkdir -p $PKG/usr/share/terminfo
TERMINFO=$PKG/usr/share/terminfo make install 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 $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | \
+ cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-( 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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION