diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-08 23:55:08 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-08 23:55:08 +0000 |
commit | 2d41eaeec2820d9e57fe5514e71ce0b3ce2a750f (patch) | |
tree | e6782442e51fddc9a601e6cd48e3c8f191a3cd77 | |
parent | 1692535e3a4881b6fd71cb0f6b6bc5db256b9aff (diff) |
Unbork the S var in ccdv.
BKrev: 4190075cmbyskaknTd9rsq2p6HeM7g
-rw-r--r-- | ccdv/ccdv.oe | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ccdv/ccdv.oe b/ccdv/ccdv.oe index e69de29bb2..4da4beffd2 100644 --- a/ccdv/ccdv.oe +++ b/ccdv/ccdv.oe @@ -0,0 +1,15 @@ +DESCRIPTION = "ccdv is a tool to reduce the deluge of make output to make \ +finding actual problems easier." +MAINTAINER = "Chris Larson <kergoth@handhelds.org>" +LICENSE = "GPL" +SRC_URI = "http://openembedded.org/dl/ccdv.c" +S = "${WORKDIR}/openembedded.org" + +do_compile () { + ${CC} ${CFLAGS} ${LDFLAGS} ccdv.c -o ccdv +} + +do_install () { + install -d ${D}/${bindir} + install -m 0755 ccdv ${D}/${bindir}/ +} |