aboutsummaryrefslogtreecommitdiffstats
path: root/packages/devmem2/devmem2.bb
blob: 0ddaec5637ebf3df188ee0f09148490a9cf901eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SRC_URI = "http://www.lart.tudelft.nl/lartware/port/devmem2.c"
LICENSE = "GPL"

S = "${WORKDIR}"

do_compile() {
	${CC} -o devmem2 devmem2.c ${CFLAGS} ${LDFLAGS}
}

do_install() {
	install -d ${D}${bindir}
	install devmem2 ${D}${bindir}
}