diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2017-01-09 20:31:47 +0700 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-01-09 20:18:25 +0000 |
commit | 0b1056ab7274cee9d0cab634c08322c42b2c4fd2 (patch) | |
tree | c06d4a6d084a484ed5c53c401345b260679ebff3 /misc/rlwrap/rlwrap.SlackBuild | |
parent | bf5cb43af386ff0f608c6e8710e03d9e9ea91352 (diff) |
misc/rlwrap: Updated for version 0.42 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc/rlwrap/rlwrap.SlackBuild')
-rw-r--r-- | misc/rlwrap/rlwrap.SlackBuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/misc/rlwrap/rlwrap.SlackBuild b/misc/rlwrap/rlwrap.SlackBuild index 170c08b8b84e4..810dcbf916b4b 100644 --- a/misc/rlwrap/rlwrap.SlackBuild +++ b/misc/rlwrap/rlwrap.SlackBuild @@ -1,12 +1,14 @@ #!/bin/sh # Slackware build script for rlwrap + # Written by slakmagik <slakmagik@gmail.com> +# Updated 2017 by Andrew Clemons, Wellington New Zealand # Released under the WTFPL PRGNAM=rlwrap -VERSION=${VERSION:-0.37} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.42} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -51,6 +53,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +autoreconf -vif + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -64,7 +68,9 @@ make DESTDIR=$PKG install-strip find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a [ABCINPRT]* $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS BUGS COPYING ChangeLog INSTALL NEWS PLEA README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |