diff options
author | Dimitrios Siganos <dimitris@siganos.org> | 2025-05-19 02:02:21 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-21 07:38:22 -0700 |
commit | 6f2f82d6ed88ceffd4d2acb4cdce9d9d475dd29f (patch) | |
tree | 2f3d4b0f3218012d75d77bdaf15f6de7e68d6f0d | |
parent | a89efa8cad440f7a70072089555d3fe215017003 (diff) | |
download | meta-openembedded-6f2f82d6ed88ceffd4d2acb4cdce9d9d475dd29f.tar.gz |
bvi: add new package
bvi is a visual editor for binary files
Signed-off-by: Dimitrios Siganos <dimitris@siganos.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/bvi/bvi_1.4.2.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/bvi/bvi_1.4.2.bb b/meta-oe/recipes-support/bvi/bvi_1.4.2.bb new file mode 100644 index 0000000000..b0081794d0 --- /dev/null +++ b/meta-oe/recipes-support/bvi/bvi_1.4.2.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "Binary VI editor" | ||
2 | DESCRIPTION = "bvi is a visual editor for binary files." | ||
3 | HOMEPAGE = "https://sourceforge.net/projects/bvi" | ||
4 | SECTION = "console/utils" | ||
5 | LICENSE = "GPL-3.0-only" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a36207309d382da27cd66fdaae922e3c" | ||
7 | |||
8 | SRC_URI = "${SOURCEFORGE_MIRROR}/bvi/bvi-${PV}.src.tar.gz" | ||
9 | SRC_URI[sha256sum] = "4bba16c2b496963a9b939336c0abcc8d488664492080ae43a86da18cf4ce94f2" | ||
10 | |||
11 | DEPENDS += "ncurses" | ||
12 | |||
13 | # The project uses old style C interfaces and it is not compatible with C23 | ||
14 | # it builds fine with C17, specifying gnu17 as the C dialect to use | ||
15 | CFLAGS:append = " -std=gnu17 -Wno-old-style-definition" | ||
16 | |||
17 | inherit pkgconfig autotools-brokensep | ||