summaryrefslogtreecommitdiff
path: root/packages/ezx/ezx-gpiotool_svn.bb
blob: e483c4091cbf957c22d720aa6702ea6cbfce4585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DESCRIPTION = "Gpiotool can read/write gpio configuration as well as individual gpio pins from userspace."
SECTION = "devel"
LICENSE = "GPL"
HOMEPAGE = "http://openezx.org"
AUTHOR = "Harald Welte"
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"

SRC_URI = "svn://svn.openezx.org/trunk/src;module=gpiotool;proto=http"
S = "${WORKDIR}/gpiotool"

do_compile() {
	for i in mmio.c gpiotool.c gpio.c
	do
		${CC} ${CFLAGS} -c $i
	done
	${CC} ${CFLAGS} -o ezx-gpiotool mmio.o gpiotool.o gpio.o
}

do_stage() {
	:
}

do_install() {
	install -d ${D}${sbindir}
	install -m 0755 ezx-gpiotool ${D}${sbindir}
}