From 9503b79cb0ba13b40eb193961efe04f0408469cc Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Fri, 29 Aug 2014 15:59:09 +0200 Subject: yocto: add more recipe examples Signed-off-by: Manuel Traut --- .../yocto-advanced/pres_yocto-advanced.tex | 39 ++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) (limited to 'distribution/yocto-advanced/pres_yocto-advanced.tex') diff --git a/distribution/yocto-advanced/pres_yocto-advanced.tex b/distribution/yocto-advanced/pres_yocto-advanced.tex index 56ea3d4..943033e 100644 --- a/distribution/yocto-advanced/pres_yocto-advanced.tex +++ b/distribution/yocto-advanced/pres_yocto-advanced.tex @@ -704,19 +704,54 @@ SECTION = "examples" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" PR = "r0" - SRC_URI = "file://autohello-${PV}.tar.gz" SRC_URI[md5sum] = "4bfc9bed4d5d67a266d93e99e5883211" inherit autotools \end{verbatim} \end{frame} -\begin{frame} +\begin{frame}[fragile] \frametitle{cmake based project} +\begin{verbatim} +. +├── files +│   └── hellocm-0.1.tar.bz2 +└── hellocm_0.1.bb +\end{verbatim} +\begin{verbatim} +DESCRIPTION = "hellocm cmake example" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" +SECTION = "examples" +SRC_URI = "file://${BPN}-${PV}.tar.bz2" +inherit cmake + +#export EXTRA_OECMAKE = '-DBLUBB="bla" + +FILES_{PN} = "${bindir}/hellocm" +\end{verbatim} \end{frame} \begin{frame} \frametitle{qt application} +\begin{verbatim} +├── files +│   └── helloqt-1.0.tar.bz2 +└── helloqt_1.0.bb +\end{verbatim} +\begin{verbatim} +DESCRIPTION = "helloqt QT example" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" +SECTION = "examples" +SRC_URI = "file://${BPN}-${PV}.tar.bz2" +inherit qt4e +PR = "r4" +do_install() { + install -d ${D}${bindir} + install -m 0755 helloqt ${D}${bindir} +} +\end{verbatim} \end{frame} \begin{frame} -- cgit v1.2.3