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

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

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