summaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen2/recipes-multimedia/s3ctl-module/s3ctl-user-module.bb
blob: 611e0b24dd5d278cae447b9cc215913e96cbb4a4 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require ../../include/rcar-gen2-modules-common.inc

LICENSE = "CLOSED"
DEPENDS = "s3ctl-kernel-module"
PN = "s3ctl-user-module"
PR = "r0"
SRC_URI = "file://s3ctl.tar.bz2"

S = "${WORKDIR}/s3ctl"

do_compile() {
    # Build shared library
    cd ${S}/if
    rm -rf libs3ctl.so*
    make all ARCH=arm
    # Copy shared library for reference from other modules
    cp -P ${S}/if/libs3ctl.so* ${LIBSHARED}
}

do_install() {
    # Create shared folder
    mkdir -p ${D}${RENESAS_DATADIR}/lib/ ${D}${RENESAS_DATADIR}/include/
    # Copy share library
    cp -P ${S}/if/libs3ctl.so* ${D}${RENESAS_DATADIR}/lib/
    # Copy shared header files
    cp -f ${BUILDDIR}/include/s3ctl_user_public.h ${D}${RENESAS_DATADIR}/include/
    cp -f ${BUILDDIR}/include/s3ctl_user_private.h ${D}${RENESAS_DATADIR}/include/
}

# Append function to clean extract source
do_cleansstate_prepend() {
        bb.build.exec_func('do_clean_source', d)
}

do_clean_source() {
    rm -f ${LIBSHARED}/libs3ctl.so*
    rm -f ${BUILDDIR}/include/s3ctl_user_public.h
    rm -f ${BUILDDIR}/include/s3ctl_user_private.h
}

PACKAGES = "\
    ${PN} \
    ${PN}-dev \
"

FILES_${PN} = " \
    ${RENESAS_DATADIR}/lib/libs3ctl.so.* \
"

FILES_${PN}-dev = " \
    ${RENESAS_DATADIR}/lib/libs3ctl.so \
    ${RENESAS_DATADIR}/include/*.h \
"

RPROVIDES_${PN} += "s3ctl-user-module"
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
INSANE_SKIP_${PN} += "libdir"
INSANE_SKIP_${PN}-dev += "libdir"

do_configure[noexec] = "1"

python do_package_ipk_prepend () {
    d.setVar('ALLOW_EMPTY', '1')
}