aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shasum/shasum.inc
blob: 1ff6e83767e1667838b5600039fbf7a70d0c642a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SUMMARY = "A simple tool to create sha256 hashes from a file"
LICENSE = "LGPL"

S = "${WORKDIR}"


SRC_URI = "file://main.c         \
           file://mhash_sha256.h \
           file://sha256.c "


do_configure() {
    :
}

do_compile() {
    $CC $CFLAGS $CPPFLAGS -o sha256sum main.c sha256.c
}