blob: 9b513b6fe902100180e55c13231559d19f16bc0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "A secure sockets library"
SECTION = "libs"
LICENSE = "GPL"
PR = "r1"
SRC_URI = "http://wiki.openembedded.org/dl/matrixssl-1-1-1.tar.gz \
file://cross.patch;patch=1"
S = "${WORKDIR}/matrixssl/src"
require matrixssl.inc
CFLAGS_append = " ${@define_os(d)}"
do_install () {
install -d ${D}${includedir}
install -m 0644 ${S}/../matrixSsl.h ${D}${includedir}/
oe_libinstall -so libmatrixssl ${D}${libdir}/
}
SRC_URI[md5sum] = "0f867a7b5ce70650f36caf00c4941ebf"
SRC_URI[sha256sum] = "b46ade42d080851ba4c5a10d3c520eb169fc33ab5c259ee8ca147eff57741246"
|