diff options
Diffstat (limited to 'ccdv/ccdv.oe')
-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}/ +} |