blob: 3cc33770d60bb10cbde4c51e66c54792593903e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
LICENSE="GPL"
SUMMARY="Forward a serial using TCP/IP"
SRC_URI="svn://svn.openmoko.org/developers/zecke/;module=serial_forward;proto=http"
S="${WORKDIR}/serial_forward"
do_compile() {
cd ${S}
oe_runmake
}
do_install() {
install -d ${D}/${bindir}
install -m 0755 ${S}/forward ${D}/${bindir}/${PN}
}
|