blob: 09df504a8b940275d3db88fd19e87273015bd09a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "A secure sockets library"
SECTION = "libs"
LICENSE = "GPL"
SRC_URI = "http://openembedded.org/dl/matrixssl-1-1-1.tar.gz \
file://cross.patch;patch=1"
S = "${WORKDIR}/matrixssl/src"
require matrixssl.inc
CFLAGS += " ${@define_os(d)}"
do_install () {
install -d ${D}${includedir}
install -m 0644 ${S}/../matrixSsl.h ${D}${includedir}/
oe_libinstall -so libmatrixssl ${D}${libdir}/
}
|