diff options
author | Richard Purdie <richard@openedhand.com> | 2007-08-08 21:06:01 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-08-08 21:06:01 +0000 |
commit | 20093245e320b661f949ca1bfb49d05a53f80aee (patch) | |
tree | 6b97cb4c7780bdebddeeaf9d8ae7c9c168ba71cc /meta/packages/shasum/shasum.inc | |
parent | 9c900768c48f5eac3d8e8171392b5d3dee91b422 (diff) | |
download | openembedded-core-20093245e320b661f949ca1bfb49d05a53f80aee.tar.gz openembedded-core-20093245e320b661f949ca1bfb49d05a53f80aee.tar.bz2 openembedded-core-20093245e320b661f949ca1bfb49d05a53f80aee.zip |
Add shasum (from OE)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2412 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/shasum/shasum.inc')
-rw-r--r-- | meta/packages/shasum/shasum.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/packages/shasum/shasum.inc b/meta/packages/shasum/shasum.inc new file mode 100644 index 0000000000..343a2d288e --- /dev/null +++ b/meta/packages/shasum/shasum.inc @@ -0,0 +1,20 @@ +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 +} |