aboutsummaryrefslogtreecommitdiffstats
path: root/ccdv/ccdv.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-08 23:55:08 +0000
committerChris Larson <clarson@kergoth.com>2004-11-08 23:55:08 +0000
commit2d41eaeec2820d9e57fe5514e71ce0b3ce2a750f (patch)
treee6782442e51fddc9a601e6cd48e3c8f191a3cd77 /ccdv/ccdv.oe
parent1692535e3a4881b6fd71cb0f6b6bc5db256b9aff (diff)
downloadopenembedded-2d41eaeec2820d9e57fe5514e71ce0b3ce2a750f.tar.gz
Unbork the S var in ccdv.
BKrev: 4190075cmbyskaknTd9rsq2p6HeM7g
Diffstat (limited to 'ccdv/ccdv.oe')
-rw-r--r--ccdv/ccdv.oe15
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}/
+}