blob: d90322356c4edda2706af59619413eff61e1bffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
PR = "r2"
PV = "0.0+cvs${SRCDATE}"
SRC_URI = "cvs://anonymous@linuxconsole.cvs.sourceforge.net/cvsroot/linuxconsole;module=ruby \
file://serio.h \
file://makefile.patch;patch=1;pnum=0 \
file://snes232.patch;patch=1;pnum=0"
LICENSE = "GPL"
S = "${WORKDIR}/ruby/utils"
CFLAGS =+ "-I. -I../linux/include -I../ruby-2.6/include"
do_configure() {
install -d linux
install -m 0644 ${WORKDIR}/serio.h linux/
}
do_install() {
install -d ${D}${sbindir}
install evtest inputattach jstest jscal fftest ${D}${sbindir}
}
|