summaryrefslogtreecommitdiff
path: root/packages/ccdv/ccdv.bb
blob: 2adf9f1a358697127cdbf3381c35ab78ca19f4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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}/
}