blob: 32059159f4cceb59031b9ae00f640c939b6469cd (
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
65
|
require ../../include/rcar-gen2-modules-common.inc
LICENSE = "CLOSED"
DEPENDS = "mmngr-kernel-module"
PN = "mmngr-user-module"
S = "${WORKDIR}/mmngr"
SRC_URI = "file://mmngr.tar.bz2"
do_compile() {
# Build shared library
cd ${S}/if
rm -rf ${S}/if/libmmngr.so*
make all ARCH=arm
# Copy shared library into shared folder
cp -P ${S}/if/libmmngr.so* ${LIBSHARED}
}
do_install() {
mkdir -p ${D}/usr/local/lib/ ${D}/usr/local/include
# Copy shared library
cp -P ${S}/if/libmmngr.so* ${D}/usr/local/lib/
cd ${D}/usr/local/lib/
# Copy shared header files
cp -f ${BUILDDIR}/include/mmngr_user_public.h ${D}/usr/local/include
cp -f ${BUILDDIR}/include/mmngr_user_private.h ${D}/usr/local/include
}
# Append function to clean extract source
do_cleansstate_prepend() {
bb.build.exec_func('do_clean_source', d)
}
do_clean_source() {
rm -f ${LIBSHARED}/libmmngr.so*
rm -Rf ${BUILDDIR}/include/mmngr_user_public.h
rm -Rf ${BUILDDIR}/include/mmngr_user_private.h
}
PACKAGES = "\
${PN} \
${PN}-dev \
"
FILES_${PN} = " \
/usr/local/lib/libmmngr.so.* \
"
FILES_${PN}-dev = " \
/usr/local/include \
/usr/local/include/*.h \
/usr/local/lib \
/usr/local/lib/libmmngr.so \
"
RPROVIDES_${PN} += "mmngr-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')
}
|