blob: b90ef341c090574e5a2631c3824efaf4fa8c174e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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}/
}
|