network/vimb: Updated for version 3.1.0.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Leonard Schmidt 2018-01-27 01:58:13 +07:00 committed by Willy Sudiarto Raharjo
parent a28240107b
commit d986f637b4
4 changed files with 18 additions and 15 deletions

View File

@ -1,4 +1,4 @@
vimb is a vim-like browser based on webkitgtk that behaves like the
vimperator plugin for Firefox; its usage paradigms are modeled after the
vim editor. The goal of vimb is to build a completely keyboard-driven,
efficient and pleasurable browsing experience.
Vimb is a Vim-like web browser that is inspired by Pentadactyl and
Vimprobable. The goal of Vimb is to build a completely keyboard-driven,
efficient and pleasurable browsing experience with low memory and CPU
usage that is intuitive to use for Vim users.

View File

@ -8,12 +8,12 @@
|-----handy-ruler------------------------------------------------------|
vimb: vimb (keyboard-driven, vim-like web browser)
vimb:
vimb: vimb is a vim-like browser based on webkitgtk that behaves like
vimb: the vimperator plugin for Firefox; its usage paradigms are modeled
vimb: after the vim editor. The goal of vimb is to build a completely
vimb: keyboard-driven, efficient and pleasurable browsing experience.
vimb:
vimb: Vimb is a webkit2gtk-based browser inspired by Pentadactyl and
vimb: Vimprobable. The goal of Vimb is to build a completely
vimb: keyboard-driven, efficient and pleasurable browsing experience with
vimb: low memory and CPU usage that is intuitive to use for Vim users.
vimb:
vimb: Homepage: http://fanglingsu.github.io/vimb
vimb:
vimb:
vimb:

View File

@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=vimb
VERSION=${VERSION:-2.12}
VERSION=${VERSION:-3.1.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -69,7 +69,10 @@ 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 {} \;
make PREFIX=/usr MANDIR=/usr/man DESTDIR=$PKG install
make PREFIX=/usr DESTDIR=$PKG MANPREFIX=$PKG/usr/man LIBDIR=$PKG/usr/lib${LIBDIRSUFFIX} install
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
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

View File

@ -1,10 +1,10 @@
PRGNAM="vimb"
VERSION="2.12"
VERSION="3.1.0"
HOMEPAGE="http://fanglingsu.github.io/vimb"
DOWNLOAD="https://github.com/fanglingsu/vimb/archive/2.12/vimb-2.12.tar.gz"
MD5SUM="fadbbfb68125700ee4f9be5f98601fcf"
DOWNLOAD="https://github.com/fanglingsu/vimb/archive/3.1.0/vimb-3.1.0.tar.gz"
MD5SUM="52b28e286a2529407684d9f221279822"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="webkitgtk"
REQUIRES="webkit2gtk"
MAINTAINER="Leonard Schmidt"
EMAIL="lems@gmx.net"