blob: 5160c1baf473ba84c2c687e172cb5bf0bcb1e5d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
SECTION = "unknown"
SRC_URI = "http://openembedded.org/dl/matrixssl-1-0-beta2-r2.tar.gz \
file://cross.patch;patch=1"
S = "${WORKDIR}/matrixssl/src"
def define_os (d):
import oe
if oe.data.getVar('TARGET_OS', d).startswith('linux'):
return "-DLINUX"
return ""
CFLAGS += " ${@define_os(d)}"
do_install () {
install -d ${D}/${includedir}
install -m 0644 ${S}/../matrixSsl.h ${D}/${includedir}/
oe_libinstall -so libmatrixssl ${D}/${libdir}/
}
|