diff options
Diffstat (limited to 'system/vifm/vifm.SlackBuild')
-rw-r--r-- | system/vifm/vifm.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/system/vifm/vifm.SlackBuild b/system/vifm/vifm.SlackBuild index 7e8ddf3c6db8b..7f64dc4a088cb 100644 --- a/system/vifm/vifm.SlackBuild +++ b/system/vifm/vifm.SlackBuild @@ -10,6 +10,8 @@ # had no license; modified version is licensed under the WTFPL. # See http://www.wtfpl.net/txt/copying/ for details. +# 20221228 bkw: updated for v0.12.1. + # 20200101 bkw: # - take over maintenance # - update for v0.10.1 @@ -20,7 +22,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=vifm -VERSION=${VERSION:-0.11} +VERSION=${VERSION:-0.12.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -80,11 +82,13 @@ chown -R root:root . find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ +# note: configure script appends $PRGNAM to sysconfdir. CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --mandir=/usr/man \ + --sysconfdir=/etc \ --build=$ARCH-slackware-linux make @@ -99,7 +103,8 @@ rm -rf $PKG/usr/share/doc # Include only the vim instructions from INSTALL, nobody cares about compile # instructions (especially not Windows ones) when using a binary package. rm -f $DOCDIR/INSTALL -sed -n '/^Vim Specific/,$p' INSTALL > $DOCDIR/README_vim.txt +sed -n '/^Vim Specific/,/Building with broken/p' INSTALL | \ + sed '$d' > $DOCDIR/README_vim.txt cat $CWD/$PRGNAM.SlackBuild > $DOCDIR/$PRGNAM.SlackBuild |