blob: ad51bcc608da3c3407f4ccfc447cb36ddf469249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
SUMMARY = "A simple tool to create sha256 hashes from a file"
LICENSE = "LGPL"
PR = "r1"
S = "${WORKDIR}"
SRC_URI = "file://main.c \
file://mhash_sha256.h \
file://sha256.c "
do_configure() {
:
}
do_compile() {
$CC $CFLAGS $CPPFLAGS -o oe_sha256sum main.c sha256.c
}
NATIVE_INSTALL_WORKS = "1"
do_install() {
install -d ${D}${bindir}/
install ${S}/oe_sha256sum ${D}${bindir}/
}
|