From 4afcf72672f5a1b42888efbd8a47b6c09e48c6ea Mon Sep 17 00:00:00 2001 From: Raptor Engineering Development Team Date: Fri, 14 Feb 2020 17:45:58 +0000 Subject: Add binary block editor package --- .../binary-block-editor/binary-block-editor.bb | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 meta-rcs/recipes-phosphor/binary-block-editor/binary-block-editor.bb diff --git a/meta-rcs/recipes-phosphor/binary-block-editor/binary-block-editor.bb b/meta-rcs/recipes-phosphor/binary-block-editor/binary-block-editor.bb new file mode 100644 index 000000000..7e0b21b7d --- /dev/null +++ b/meta-rcs/recipes-phosphor/binary-block-editor/binary-block-editor.bb @@ -0,0 +1,26 @@ +SUMMARY = "Simple binary block editor" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" + +PE = "0" +PV = "0.2.2+git${SRCPV}" +SRCREV = "6c76ee16e1d4f1057ce37166001e95a87c5acb39" + +SRC_URI = "git://scm.raptorcs.com/scm/git/binary-block-editor;branch=master;protocol=https" +S = "${WORKDIR}/git" + +inherit autotools-brokensep + +do_configure_prepend () { + cd ${S} + aclocal + autoconf --force + libtoolize --automake -c --force + automake -ac +} + +do_install () { + install -d ${D}${bindir} + install -m 755 ${S}/src/bbe ${D}${bindir}/bbe +} -- cgit v1.2.1