blob: d2871f273f32d343e1100637eed2110e7cb67339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
DESCRIPTION = "QOS Interface library for R-Car Gen3"
require qosif.inc
DEPENDS = "kernel-module-qos"
PN = "qosif-user-module"
PR = "r0"
S = "${WORKDIR}/git"
QOSIF_LIB_DIR = "qos_if-module/files/qos_if"
EXTRA_OEMAKE = "ARCH=${TARGET_ARCH}"
includedir = "/usr/local/include"
do_compile() {
# Build shared library
cd ${S}/${QOSIF_LIB_DIR}/if
rm -rf ${S}/${QOSIF_LIB_DIR}/if/libqos.so*
oe_runmake
}
do_install() {
# Create destination directories
install -d ${D}/${libdir}
install -d ${D}/${includedir}
# Copy shared library
install -m 755 ${S}/${QOSIF_LIB_DIR}/if/libqos.so* ${D}/${libdir}/
cd ${D}/${libdir}/
ln -sf libqos.so.1.0.0 libqos.so.1
ln -sf libqos.so.1 libqos.so
# Install shared header file
install -m 644 ${S}/${QOSIF_LIB_DIR}/include/qos_public.h ${D}/${includedir}/
}
PACKAGES = " \
${PN} \
${PN}-dev \
${PN}-dbg \
"
FILES_${PN} = " \
${libdir}/libqos.so* \
"
INSANE_SKIP_${PN} = "dev-so"
|