diff options
author | Kang Kai <kai.kang@windriver.com> | 2018-08-06 03:39:05 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-08-08 12:04:14 -0700 |
commit | 9ac3ba22a4fab673669a5da81b89fc19e9e7f586 (patch) | |
tree | 99f0255633303dcba7081d59f3e1487398fdabb6 /meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.85.bb | |
parent | 085f0b3a366eae85acfdc3b0703ee4eca6853d84 (diff) | |
download | meta-openembedded-9ac3ba22a4fab673669a5da81b89fc19e9e7f586.tar.gz |
libnet-ssleay-perl: 1.84 -> 1.85
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.85.bb')
-rw-r--r-- | meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.85.bb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.85.bb b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.85.bb new file mode 100644 index 0000000000..a0bb90e7d6 --- /dev/null +++ b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.85.bb | |||
@@ -0,0 +1,47 @@ | |||
1 | SUMMARY = "Net::SSLeay - Perl extension for using OpenSSL" | ||
2 | DESCRIPTION = "This module offers some high level convenience functions for accessing \ | ||
3 | web pages on SSL servers (for symmetry, same API is offered for \ | ||
4 | accessing http servers, too), a sslcat() function for writing your own \ | ||
5 | clients, and finally access to the SSL api of SSLeay/OpenSSL package \ | ||
6 | so you can write servers or clients for more complicated applications." | ||
7 | HOMEPAGE = "http://search.cpan.org/dist/Net-SSLeay/" | ||
8 | SECTION = "libs" | ||
9 | |||
10 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
11 | LIC_FILES_CHKSUM = "file://README;beginline=274;endline=294;md5=67d67095d83e339da538a082fad5f38e" | ||
12 | |||
13 | DEPENDS = "openssl zlib openssl-native" | ||
14 | RDEPENDS_${PN} += "\ | ||
15 | libssl \ | ||
16 | libcrypto \ | ||
17 | perl-module-carp \ | ||
18 | perl-module-errno \ | ||
19 | perl-module-extutils-makemaker \ | ||
20 | perl-module-mime-base64 \ | ||
21 | perl-module-socket \ | ||
22 | zlib \ | ||
23 | " | ||
24 | |||
25 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-${PV}.tar.gz \ | ||
26 | file://run-ptest \ | ||
27 | " | ||
28 | SRC_URI[md5sum] = "d602bdce4e0531c6efc276e3e429ca69" | ||
29 | SRC_URI[sha256sum] = "9d8188b9fb1cae3bd791979c20554925d5e94a138d00414f1a6814549927b0c8" | ||
30 | |||
31 | S = "${WORKDIR}/Net-SSLeay-${PV}" | ||
32 | |||
33 | inherit cpan ptest | ||
34 | |||
35 | export OPENSSL_PREFIX="${STAGING_LIBDIR}" | ||
36 | |||
37 | EXTRA_CPANFLAGS = "INC=-I${STAGING_INCDIR} LIBS='-L${STAGING_LIBDIR} -lcrypto -lssl -L${STAGING_BASELIBDIR} -lz'" | ||
38 | |||
39 | do_install_ptest() { | ||
40 | cp -r ${B}/t ${D}${PTEST_PATH} | ||
41 | } | ||
42 | |||
43 | BBCLASSEXTEND = "native" | ||
44 | |||
45 | FILES_${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/Net/SSLeay/.debug/" | ||
46 | |||
47 | RDEPENDS_${PN}-ptest = " perl" | ||