Skip to content

Commit

Permalink
bump bvi
Browse files Browse the repository at this point in the history
  • Loading branch information
fda77 committed Jun 21, 2024
1 parent 08f1540 commit a818afa
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Latest changes
* BIND 9.11.37/9.18.27
* BIRD 1.6.8/2.15.1
* Bftpd 6.2
* bvi 1.4.2
* CCID 1.5.5
* Dropbear 2024.85
* FFmpeg 5.1.4
Expand Down
22 changes: 12 additions & 10 deletions make/pkgs/bvi/Config.in
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
config FREETZ_PACKAGE_BVI
bool "bvi/bmore 1.4.0 (binary only) "
bool "bvi/bmore 1.4.2 (binary only)"
default n
select FREETZ_LIB_libncurses
select FREETZ_PACKAGE_BVI_bvi if !FREETZ_PACKAGE_BVI_bmore
help
A hex editor/viewer for binary files

config FREETZ_PACKAGE_BVI_bvi
bool "bvi/bview"
depends on FREETZ_PACKAGE_BVI
select FREETZ_PACKAGE_BVI_bview
default y
if FREETZ_PACKAGE_BVI

config FREETZ_PACKAGE_BVI_bmore
bool "bmore"
depends on FREETZ_PACKAGE_BVI
default n
config FREETZ_PACKAGE_BVI_bvi
bool "bvi/bview"
default y

config FREETZ_PACKAGE_BVI_bmore
bool "bmore"
default n

endif # FREETZ_PACKAGE_BVI

10 changes: 8 additions & 2 deletions make/pkgs/bvi/bvi.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
$(call PKG_INIT_BIN, 1.4.0)
$(call PKG_INIT_BIN, 1.4.2)
$(PKG)_SOURCE:=$(pkg)-$($(PKG)_VERSION).src.tar.gz
$(PKG)_HASH:=015a3c2832c7c097d98a5527deef882119546287ba8f2a70c736227d764ef802
$(PKG)_HASH:=4bba16c2b496963a9b939336c0abcc8d488664492080ae43a86da18cf4ce94f2
$(PKG)_SITE:=@SF/bvi
### WEBSITE:=https://bvi.sourceforge.net/
### MANPAGE:=https://bvi.sourceforge.net/quick.html
### CHANGES:=https://bvi.sourceforge.net/download.html
### SUPPORT:=fda77

$(PKG)_DEPENDS_ON += ncurses

Expand All @@ -13,6 +17,7 @@ $(PKG)_BINARIES_TARGET_DIR := $($(PKG)_BINARIES:%=$($(PKG)_DEST_DIR)/usr/bin/%)
$(PKG)_EXCLUDED += $(patsubst %,$($(PKG)_DEST_DIR)/usr/bin/%,$(filter-out $($(PKG)_BINARIES),$($(PKG)_BINARIES_ALL)))
$(PKG)_EXCLUDED += $(if $(FREETZ_PACKAGE_BVI_bvi),,$($(PKG)_DEST_DIR)/usr/bin/bview)


$(PKG_SOURCE_DOWNLOAD)
$(PKG_UNPACKED)
$(PKG_CONFIGURED_CONFIGURE)
Expand All @@ -30,6 +35,7 @@ $(pkg):

$(pkg)-precompiled: $($(PKG)_BINARIES_TARGET_DIR) $(if $(FREETZ_PACKAGE_BVI_bvi),$($(PKG)_DEST_DIR)/usr/bin/bview)


$(pkg)-clean:
-$(SUBMAKE) -C $(BVI_DIR) clean

Expand Down

1 comment on commit a818afa

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See for infos about bvi and maybe a changelog link:
https://freetz-ng.github.io/freetz-ng/make/bvi

Please sign in to comment.