diff options
author | Duane Dohrman II <d.dohrman@gmail.com> | 2010-05-12 17:45:58 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:45:58 +0200 |
commit | eaf6dc7a49d98e6014ee6cc8c3693a091ddd7b25 (patch) | |
tree | b141b7a8eccdffbed71f876274c9693e9b6e71b4 /system/rxvt-unicode/rxvt-unicode.SlackBuild | |
parent | 52a98fd7b956f29563c676299f3f84bcfd5ee69d (diff) |
system/rxvt-unicode: Updated for version 9.06
Diffstat (limited to 'system/rxvt-unicode/rxvt-unicode.SlackBuild')
-rw-r--r-- | system/rxvt-unicode/rxvt-unicode.SlackBuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/system/rxvt-unicode/rxvt-unicode.SlackBuild b/system/rxvt-unicode/rxvt-unicode.SlackBuild index 2669677bcae0..bed52fd077f2 100644 --- a/system/rxvt-unicode/rxvt-unicode.SlackBuild +++ b/system/rxvt-unicode/rxvt-unicode.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=rxvt-unicode VERSION="9.06" ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -55,7 +55,6 @@ chown -R root:root . chmod -R u+w,go+r-w,a-s . # Changing to --disable-perl will provide a much lighter package - CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -91,15 +90,17 @@ CXXFLAGS="$SLKCFLAGS" \ --enable-utmp \ --enable-wtmp \ --enable-lastlog \ - --build=$ARCH-slackware-linux \ - --host=$ARCH-slackware-linux + --build=$ARCH-slackware-linux make -make install DESTDIR=$PKG +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 . | 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 ) ( cd $PKG/usr/man |