diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-04-26 16:22:04 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-27 11:14:57 +0200 |
commit | 8bdaca3f6688d138d7359190824dbff305a3fc9f (patch) | |
tree | 002fd9767425903ec22d37d85e3193fa88b52c54 | |
parent | 3a4385bc051338379d7d18337cce85d3a827e2f7 (diff) | |
download | meta-openembedded-8bdaca3f6688d138d7359190824dbff305a3fc9f.tar.gz |
libnet-telnet-perl: add new recipe
Net-Telnet Perl module, it allows you to make client
connections to a TCP port and do network I/O, especially
to a port using the TELNET protocol.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-perl/recipes-perl/libnet/libnet-telnet-perl_3.04.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libnet/libnet-telnet-perl_3.04.bb b/meta-perl/recipes-perl/libnet/libnet-telnet-perl_3.04.bb new file mode 100644 index 000000000..652e8c941 --- /dev/null +++ b/meta-perl/recipes-perl/libnet/libnet-telnet-perl_3.04.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Net-Telnet Perl module" | ||
2 | DESCRIPTION = "Net::Telnet allows you to make client connections to a TCP port and do \ | ||
3 | network I/O, especially to a port using the TELNET protocol. Simple I/O \ | ||
4 | methods such as print, get, and getline are provided. More sophisticated \ | ||
5 | interactive features are provided because connecting to a TELNET port \ | ||
6 | ultimately means communicating with a program designed for human interaction. \ | ||
7 | These interactive features include the ability to specify a time-out and to \ | ||
8 | wait for patterns to appear in the input stream, such as the prompt from a \ | ||
9 | shell." | ||
10 | |||
11 | HOMEPAGE = "http://search.cpan.org/dist/Net-Telnet/" | ||
12 | SECTION = "Development/Libraries" | ||
13 | |||
14 | LICENSE = "Artistic-1.0|GPLv1+" | ||
15 | LIC_FILES_CHKSUM = "file://README;beginline=4;endline=7;md5=3fd238bfb6ee1810cb15d5d95e07b0f5" | ||
16 | |||
17 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/J/JR/JROGERS/Net-Telnet-${PV}.tar.gz" | ||
18 | SRC_URI[md5sum] = "d2514080116c1b0fa5f96295c84538e3" | ||
19 | SRC_URI[sha256sum] = "e64d567a4e16295ecba949368e7a6b8b5ae2a16b3ad682121d9b007dc5d2a37a" | ||
20 | |||
21 | S = "${WORKDIR}/Net-Telnet-${PV}" | ||
22 | |||
23 | inherit cpan | ||
24 | |||
25 | RDEPENDS_${PN} = "perl" | ||