blob: d5f1e8b9282d8b7c1e0a942dcfb5e5a996c09178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
}
do_install() {
install -d ${D}${bindir}/
install ${S}/oe_sha256sum ${D}${bindir}/
}
|