diff options
-rw-r--r-- | meta-oe/recipes-support/dhex/dhex_0.69.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/dhex/dhex_0.69.bb b/meta-oe/recipes-support/dhex/dhex_0.69.bb new file mode 100644 index 0000000000..cfbb2caaf6 --- /dev/null +++ b/meta-oe/recipes-support/dhex/dhex_0.69.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "dhex is a hex editor that includes a diff mode" | ||
2 | SECTION = "console/utils" | ||
3 | |||
4 | DEPENDS = "ncurses" | ||
5 | |||
6 | LICENSE = "GPLv2+" | ||
7 | LIC_FILES_CHKSUM = "file://README.txt;beginline=229;endline=241;md5=6f252a421b65bcecf624382ba3c899da" | ||
8 | |||
9 | SRC_URI = "http://www.dettus.net/dhex/dhex_0.69.tar.gz" | ||
10 | SRC_URI[md5sum] = "64d557437fe110c19f23ed3e9bbcdd54" | ||
11 | SRC_URI[sha256sum] = "52730bcd1cf16bd4dae0de42531be9a4057535ec61ca38c0804eb8246ea6c41b" | ||
12 | |||
13 | S = "${WORKDIR}/dhex_${PV}" | ||
14 | |||
15 | EXTRA_OEMAKE += "'CC=${CC}' 'LDFLAGS=${LDFLAGS}' 'CPPFLAGS=${CPPFLAGS}'" | ||
16 | |||
17 | do_compile() { | ||
18 | oe_runmake | ||
19 | } | ||
20 | |||
21 | do_install() { | ||
22 | install -m 0755 -d ${D}${bindir} | ||
23 | install -m 0755 ${S}/dhex ${D}${bindir}/ | ||
24 | } | ||