blob: 4bf864f42afe3c3345c5d63ab50aaf208aed4b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
SUMMARY = "AGL user session"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
SRC_URI = " \
file://weston-terminal.desktop \
"
inherit allarch
do_install() {
install -d ${D}${datadir}/applications
install -m 0644 ${WORKDIR}/weston-terminal.desktop ${D}${datadir}/applications
}
FILES:${PN} = "${datadir}/applications"
RDEPENDS:${PN} = " \
weston \
"
|