aboutsummaryrefslogtreecommitdiffstats
path: root/meta-application-manager/recipes-examples/amhelloworld/amhelloworld.inc
blob: b92ce7d0e5df886e52c34aca8e3c9886f23baa36 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
DESCRIPTION = "APP-CORE example app"
HOMEPAGE = "https://wiki.tizen.org/wiki/IVI/Tizen-Core-development-EFL"
SECTION = "Application Framework/Libraries"
LICENSE = "Apache-2.0"
PV = "1.0"

SRC_URI = ""

S = "${WORKDIR}"

inherit autotools-brokensep

BBCLASSEXTEND = ""
PROVIDES = ""


RDEPENDS = ""

inherit tizen_cmake
DEPENDS += "app-core app-core-efl-dev"
inherit pkgconfig

do_prep() {
 cd ${S}
 chmod -Rf a+rX,u+w,g-w,o-w ${S}
 #setup -q
 #cp ${S}/packaging/ail.manifest .
}

do_patch_append() {
    bb.build.exec_func('do_prep', d)
}

do_configure() {
}

do_compile() {
 cd ${S}
 LANG=C
 export LANG
 unset DISPLAY
 LD_AS_NEEDED=1; export LD_AS_NEEDED ;
 
 CFLAGS="$CFLAGS -fpic"
 
   cmake \
         -DCMAKE_VERBOSE_MAKEFILE=ON \
         -DCMAKE_INSTALL_PREFIX:PATH=${prefix} \
         -DCMAKE_INSTALL_LIBDIR:PATH=${prefix}/lib \
         -DINCLUDE_INSTALL_DIR:PATH=${prefix}/include \
         -DLIB_INSTALL_DIR:PATH=${prefix}/lib \
         -DSYSCONF_INSTALL_DIR:PATH=${sysconfdir} \
         -DSHARE_INSTALL_PREFIX:PATH=${prefix}/share \
         -DCMAKE_SKIP_RPATH:BOOL=ON \
         -DBUILD_SHARED_LIBS:BOOL=ON \
         -DCMAKE_TOOLCHAIN_FILE=${WORKDIR}/toolchain.cmake \
         ${EXTRA_OECMAKE} .  \
           -DBUILD_PKGTYPE=deb
 
 oe_runmake ${PARALLEL_MAKE}
}

do_install() {
 export RPM_BUILD_ROOT=${D}
 cd ${S}
 LANG=C
 export LANG
 unset DISPLAY
 rm -rf ${D}
 mkdir -p ${D}
 
   oe_runmake \
         DESTDIR=${D} \
         INSTALL_ROOT=${D} \
         BINDIR=${prefix}/bin \
   install  
   #rm -f ${D}${infodir}/dir 
   find ${D} -regex ".*\.la$" | xargs rm -f -- 
   find ${D} -regex ".*\.a$" | xargs rm -f --
}

amhelloworld_files = ""
amhelloworld_files += "${prefix}/packages/org.tizen.amhelloworld.xml"
amhelloworld_files += "${prefix}/share/packages/org.tizen.amhelloworld.xml"
amhelloworld_files += "${prefix}/bin/amhelloworld"
MANIFESTFILES_${PN} = "org.tizen.amhelloworld.manifest"


FILES_${PN} = "${amhelloworld_files}"

PKG_aul= "amhelloworld"

require amhelloworld-extraconf.inc