blob: 4c5d19527783628294bb564d1ff525de7f427bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright (C) 2009 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "Event device test program"
AUTHOR = "Vojtech Pavlik <vojtech@suse.cz>"
SECTION = "console/utils"
PRIORITY = "optional"
LICENSE = "GPLv2"
PR = "r0"
SRC_URI = "http://beagleboard.googlecode.com/files/evtest.c"
S = "${WORKDIR}"
do_compile() {
${CC} evtest.c -o evtest -I${STAGING_INCDIR} -L${STAGING_LIBDIR}
}
do_install() {
install -d ${D}${bindir}
install -m 0755 evtest ${D}${bindir}
}
|