aboutsummaryrefslogtreecommitdiffstats
path: root/packages/gsm/pty_0.0.bb
blob: 39592a90a1fc05338be76845e9dd1356b9867ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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}/
}