blob: 3274e9a5ebf50db9f525dcd2922dc66d1b04cb47 (
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
|
SECTION = "base"
PRIORITY = "optional"
DESCRIPTION = "Inputpipe is a network transparency layer for linux input devices"
LICENSE = "GPL"
#Remove the dash below when 0.5 changes in PV
PV = "0.5+svn-${SRCDATE}"
SRC_URI = "svn://svn.navi.cx/misc/trunk;module=inputpipe;proto=http"
S = "${WORKDIR}/inputpipe"
do_compile() {
oe_runmake CC="${CC}" CFLAGS="-I ${WORKDIR}/inputpipe/uinput ${CFLAGS}"
}
do_install() {
install -d ${D}${bindir}
install inputpipe-server ${D}${bindir}
install inputpipe-client ${D}${bindir}
}
PACKAGES = "inputpipe-server inputpipe-client"
FILES_inputpipe-client = "${bindir}/inputpipe-client"
FILES_inputpipe-server = "${bindir}/inputpipe-server"
|