diff options
author | Koen Kooi <koen@openembedded.org> | 2007-09-01 06:37:24 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-09-01 06:37:24 +0000 |
commit | fca078aa733f62af557a87a36e05f9219647b88f (patch) | |
tree | 29c087f70595e0776f0132a88c2ad08a185e4313 /packages | |
parent | 2ea4d5cd895d97669736259b35fcd3fbdd1117c3 (diff) |
ttimgextract: add svn version
Diffstat (limited to 'packages')
-rw-r--r-- | packages/opentom/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/opentom/ttimgextract.bb | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/packages/opentom/.mtn2git_empty b/packages/opentom/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/opentom/.mtn2git_empty diff --git a/packages/opentom/ttimgextract.bb b/packages/opentom/ttimgextract.bb new file mode 100644 index 0000000000..02d2e1515d --- /dev/null +++ b/packages/opentom/ttimgextract.bb @@ -0,0 +1,17 @@ +LICENSE = "None" +DESCRIPTION = "A tool to extract the ttsystem images into their components." + +SRC_URI = "svn://svn.opentom.org/opentom/trunk/;module=ttimgextract;proto=http" + +PV = "0.0+svn${SRCDATE}" +S = "${WORKDIR}/${PN}" + + +do_compile() { + ${CC} -o ttimgextract ttimgextract.c -DPATH_MAX=4096 ${TARGET_CC_ARCH} +} + +do_install () { + install -d ${D}${bindir} + install -m 0755 ${S}/ttimgextract ${D}${bindir}/ +} |