aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gsm/pty_0.0.bb
blob: ab767f7979e73a62fa3e2b413efa4341e216f972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
DESCRIPTION = "Forwards a socket to a tty"
LICENSE = "GPLv2"
PR = "r1"

SRC_URI = "file://pty.c"

do_compile() {
	cp ${WORKDIR}/*.c ${S}/
	${CC} pty.c -o pty -I${STAGING_INCDIR} -L${STAGING_LIBDIR}
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 pty ${D}${bindir}/
}