wok rev 19195

Add: BVI. Fast and lightweight binary (hex) editor.
author Leonardo Laporte <hackdorte@sapo.pt>
date Mon Jun 06 10:28:32 2016 -0300 (2016-06-06)
parents ead2e76bcde5
children d9bf18af0e57
files bvi/description.txt bvi/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bvi/description.txt	Mon Jun 06 10:28:32 2016 -0300
     1.3 @@ -0,0 +1,15 @@
     1.4 +BVI 1.4.0 
     1.5 +
     1.6 +The bvi is a display-oriented editor for binary files (hex editor), based on 
     1.7 +the vi texteditor. If you are familiar with vi, just start the editor and begin 
     1.8 +to edit! A bmore program is also included in the package. If you never heard 
     1.9 +about vi, maybe bvi is not the best choice for you. 
    1.10 +
    1.11 +You will find now four new commands: 
    1.12 +
    1.13 +    bvi     The binary editor 
    1.14 +    bview   The readonly version of bvi 
    1.15 +    bvedit  The beginners version of bvi 
    1.16 +    bmore   The binary more program 
    1.17 +
    1.18 +http://bvi.sourceforge.net/
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/bvi/receipt	Mon Jun 06 10:28:32 2016 -0300
     2.3 @@ -0,0 +1,38 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="bvi"
     2.7 +VERSION="1.4.0"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor."
    2.10 +MAINTAINER="hackdorte@sapo.pt"
    2.11 +LICENSE="GPL2"
    2.12 +TARBALL="$PACKAGE-$VERSION.src.tar.gz"
    2.13 +WEB_SITE="http://bvi.sourceforge.net"
    2.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.15 +TAGS="binary development editor hex vi"
    2.16 +
    2.17 +DEPENDS="ncurses"
    2.18 +
    2.19 +BUILD_DEPENDS="ncurses-dev"
    2.20 +
    2.21 +# Rules to configure and make the package.
    2.22 +compile_rules()
    2.23 +{
    2.24 +  ./configure --prefix=/usr \
    2.25 +    --mandir=/usr/share/man \
    2.26 +    --with-ncurses \
    2.27 +    $CONFIGURE_ARGS &&
    2.28 +    make $MAKEFLAGS &&
    2.29 +    make DESTDIR=$DESTDIR install
    2.30 +}
    2.31 +
    2.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.33 +genpkg_rules(){
    2.34 +
    2.35 +  mkdir -p $fs/usr/bin
    2.36 +  cp -a $install/usr/bin/* $fs/usr/bin
    2.37 +
    2.38 +  mkdir -p $fs/usr/share
    2.39 +  cp -a $install/usr/share/* $fs/usr/share
    2.40 +
    2.41 +}