diff options
| author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2023-08-10 14:03:40 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-08-10 07:42:38 -0700 |
| commit | afae7e0dfad36545e483827afbf9d2673c411856 (patch) | |
| tree | b87674962f2a7f0dbf6e369a92c80a6961dc31e4 | |
| parent | b21fd413f8a85eb330afaa834069bb2221ef19d6 (diff) | |
| download | meta-openembedded-afae7e0dfad36545e483827afbf9d2673c411856.tar.gz | |
qad: Add initial recipe
QAD is a daemon used for automated remote testing on hardware which can
take screenshots and can inject mouse or touch and keyboard events.
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-extended/qad/qad_git.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/qad/qad_git.bb b/meta-oe/recipes-extended/qad/qad_git.bb new file mode 100644 index 0000000000..e2a59139d9 --- /dev/null +++ b/meta-oe/recipes-extended/qad/qad_git.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | SUMMARY = "Simple, REST-API compliant daemon for automated testing" | ||
| 2 | DESCRIPTION = " This is a simple, REST-API compliant daemon which makes \ | ||
| 3 | automated testing on hardware possible by removing the need for physical \ | ||
| 4 | intervention as Q.A.D allows inputs to be injected via http/https requests. \ | ||
| 5 | This both eliminates the need to physically interact with the rig and allows \ | ||
| 6 | for tasks to be carried out entirely automatically." | ||
| 7 | |||
| 8 | LICENSE = "MIT & GPL-2.0-or-later" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=402cce7fbcb6ea9ab5a0378dd7f40806 \ | ||
| 10 | file://openqa/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
| 11 | " | ||
| 12 | SRC_URI = "git://gitlab.com/CodethinkLabs/qad/qad;branch=main;protocol=https" | ||
| 13 | |||
| 14 | SRCREV = "ae0c099c1fdc0ca6f5d631cea6b302937122b362" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/git" | ||
| 17 | PV = "0.0+git${SRCPV}" | ||
| 18 | |||
| 19 | DEPENDS = "cjson libmicrohttpd libdrm libpng" | ||
| 20 | |||
| 21 | FILES:${PN} += "qad" | ||
| 22 | inherit meson pkgconfig | ||
| 23 | |||
| 24 | do_install () { | ||
| 25 | install -d ${D}${bindir} | ||
| 26 | install -p -m 755 qad ${D}${bindir}/ | ||
| 27 | } | ||
