# HG changeset patch # User Leonardo Laporte # Date 1465219712 10800 # Node ID 8c8391016d94e43b98c87fe8ff93ba2867108d25 # Parent ead2e76bcde5d791220d9faff9055d8738440231 Add: BVI. Fast and lightweight binary (hex) editor. diff -r ead2e76bcde5 -r 8c8391016d94 bvi/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bvi/description.txt Mon Jun 06 10:28:32 2016 -0300 @@ -0,0 +1,15 @@ +BVI 1.4.0 + +The bvi is a display-oriented editor for binary files (hex editor), based on +the vi texteditor. If you are familiar with vi, just start the editor and begin +to edit! A bmore program is also included in the package. If you never heard +about vi, maybe bvi is not the best choice for you. + +You will find now four new commands: + + bvi The binary editor + bview The readonly version of bvi + bvedit The beginners version of bvi + bmore The binary more program + +http://bvi.sourceforge.net/ diff -r ead2e76bcde5 -r 8c8391016d94 bvi/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bvi/receipt Mon Jun 06 10:28:32 2016 -0300 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="bvi" +VERSION="1.4.0" +CATEGORY="development" +SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor." +MAINTAINER="hackdorte@sapo.pt" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.src.tar.gz" +WEB_SITE="http://bvi.sourceforge.net" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +TAGS="binary development editor hex vi" + +DEPENDS="ncurses" + +BUILD_DEPENDS="ncurses-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --with-ncurses \ + $CONFIGURE_ARGS && + make $MAKEFLAGS && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules(){ + + mkdir -p $fs/usr/bin + cp -a $install/usr/bin/* $fs/usr/bin + + mkdir -p $fs/usr/share + cp -a $install/usr/share/* $fs/usr/share + +}