mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
c4d4e192f4
april 2022
- 1.6
- configure script must error-out when (n)curses isn't found
- Move SIGWINCH handling from handler to NCURSES
- Make configure.ac compliant with autoconf >= 2.70
- Check that malloc did not return NULL
- Fix a possible memory leak in findFile()
- Prevent division by zero on empty files.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
545 B
BlitzBasic
21 lines
545 B
BlitzBasic
SUMMARY = "view and edit files in hexadecimal or in ASCII"
|
|
HOMEPAGE = "http://rigaux.org/hexedit.html"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
DEPENDS = "ncurses"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
|
|
|
SRC_URI = "git://github.com/pixel/hexedit.git;branch=master;protocol=https \
|
|
"
|
|
|
|
SRCREV = "eab92dcaa34b66bc5182772afc9fda4ac8a27597"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools-brokensep update-alternatives
|
|
|
|
ALTERNATIVE:${PN} = "hexedit"
|
|
ALTERNATIVE_LINK_NAME[hexedit] = "${bindir}/hexedit"
|
|
|