blob: 81cd48747a56ac034e0a77e654a1cbddd506aa38 (
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
|
SUMMARY = "Agl Test Framework"
HOMEPAGE = "https://git.automotivelinux.org/src/agl-test-framework/"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
PN = 'agl-test-framework'
PV = '1'
SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/agl-test-framework;protocol=https;branch=master"
SRCREV = "eae50bd0b48073716ed5490ea74095fd52e4f2c0"
S = "${WORKDIR}/git"
FILES:${PN} += " \
/usr/AGL/agl-test/ \
"
do_install() {
install -d ${D}/usr/bin/
install -m 0755 ${WORKDIR}/git/agl-test ${D}/usr/bin/
install -d ${D}/usr/AGL/agl-test/plugins/
install -m 0644 ${WORKDIR}/git/pytest.ini ${D}/usr/AGL/agl-test/
install -m 0644 ${WORKDIR}/git/plugins/* ${D}/usr/AGL/agl-test/plugins/
install -d ${D}/usr/AGL/agl-test/template/
install -m 0644 ${WORKDIR}/git/template/* ${D}/usr/AGL/agl-test/template/
install -d ${D}/usr/AGL/agl-test/tests/
install -m 0644 ${WORKDIR}/git/tests/__init__.py ${D}/usr/AGL/agl-test/tests/
}
RDEPENDS:${PN} += " \
python3-pytest \
python3-jinja2 \
python3-pytest-order \
"
|