Unbork the S var in ccdv.
authorChris Larson <clarson@kergoth.com>
Mon, 8 Nov 2004 23:55:08 +0000 (23:55 +0000)
committerChris Larson <clarson@kergoth.com>
Mon, 8 Nov 2004 23:55:08 +0000 (23:55 +0000)
BKrev: 4190075cmbyskaknTd9rsq2p6HeM7g

ccdv/ccdv.oe

index e69de29..4da4bef 100644 (file)
@@ -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}/
+}