blob: 56cb77fa697d424db193e55a5de844fa7c535d58 (
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
|
From 04eb94a0134ef5eb5b5fd783b303104fbfcd8437 Mon Sep 17 00:00:00 2001
From: First Last <averylongemailaddressthatishardtoread.from@address.com>
Date: Fri, 31 May 2024 11:03:47 -0400
Subject: [PATCH] selftest-hello: add selftest-hello-extra
This should pass the test_author_valid test.
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
---
.../selftest-hello-extra_1.0.bb | 21 +++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 meta-selftest/recipes-test/selftest-hello/selftest-hello-extra_1.0.bb
diff --git a/meta-selftest/recipes-test/selftest-hello/selftest-hello-extra_1.0.bb b/meta-selftest/recipes-test/selftest-hello/selftest-hello-extra_1.0.bb
new file mode 100644
index 00000000000..f3dec1b220c
--- /dev/null
+++ b/meta-selftest/recipes-test/selftest-hello/selftest-hello-extra_1.0.bb
@@ -0,0 +1,21 @@
+SUMMARY = "This is an example summary"
+DESCRIPTION = "Simple helloworld application -- selftest variant"
+SECTION = "examples"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
+
+SRC_URI = "file://helloworld.c"
+
+S = "${WORKDIR}/sources"
+UNPACKDIR = "${S}"
+
+do_compile() {
+ ${CC} ${CFLAGS} ${LDFLAGS} helloworld.c -o helloworld
+}
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 helloworld ${D}${bindir}
+}
+
+BBCLASSEXTEND = "native nativesdk"
--
2.45.1
|