package/bvi: new package

A visual editor for binary files. Bvi allows the user to edit binary files
with a VI-like interface.

Signed-off-by: Dimitrios Siganos <dimitris@siganos.org>
[Julien:
 - sort DEVELOPERS entries
 - reword commit log title
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Dimitrios Siganos
2025-09-26 13:12:08 +01:00
committed by Julien Olivain
parent 800dcabe65
commit 5d497c0956
5 changed files with 27 additions and 0 deletions

View File

@@ -873,6 +873,7 @@ N: Dimitar Tomov <dimi@tpm.dev>
F: package/wolftpm/
N: Dimitrios Siganos <dimitris@siganos.org>
F: package/bvi/
F: package/wireless-regdb/
N: Dmitry Chestnykh <dm.chestnykh@gmail.com>

View File

@@ -2950,6 +2950,7 @@ endmenu
menu "Text editors and viewers"
source "package/bat/Config.in"
source "package/bvi/Config.in"
source "package/ed/Config.in"
source "package/joe/Config.in"
source "package/less/Config.in"

8
package/bvi/Config.in Normal file
View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_BVI
bool "bvi"
select BR2_PACKAGE_NCURSES
help
A visual editor for binary files. Bvi allows the user to
edit binary files with a VI-like interface.
https://sourceforge.net/projects/bvi

3
package/bvi/bvi.hash Normal file
View File

@@ -0,0 +1,3 @@
# Locally calculated
sha256 6540716a1a3b2b9711635108da14b26baea488881d4a682121c0bddbba6b74cb bvi-1.5.0.src.tar.gz
sha256 3e59ea99615003174426e1321df7a804f1d5bfe61bfaba7ebbb2db0e358f93fb COPYING

14
package/bvi/bvi.mk Normal file
View File

@@ -0,0 +1,14 @@
################################################################################
#
# bvi
#
################################################################################
BVI_VERSION = 1.5.0
BVI_SITE = https://sourceforge.net/projects/bvi/files/bvi/$(BVI_VERSION)
BVI_SOURCE = bvi-$(BVI_VERSION).src.tar.gz
BVI_LICENSE = GPL-3.0+
BVI_LICENSE_FILES = COPYING
BVI_DEPENDENCIES = ncurses
$(eval $(autotools-package))