blob: 0d67fc30d3ae27cd7ccc6d1ad933009a97c30651 (
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
|
PR = "r1"
SECTION = "gpe"
PRIORITY = "optional"
DESCRIPTION = "Suspend feature for the application launcher menu."
LICENSE = "GPL"
DEPENDS = "gpe-conf"
RDEPENDS = "gpe-conf"
RRECOMMENDS = "apm"
PACKAGES = ${PN}
PACKAGE_ARCH = "all"
SRC_URI = "file://suspend.desktop \
file://suspend.sh"
FILES_${PN} = "${bindir} ${datadir}"
do_compile() {
}
do_install() {
install -d ${D}/${bindir}
install -d ${D}/${datadir}/applications
install -m 644 ${WORKDIR}/suspend.desktop ${D}/${datadir}/applications/suspend.desktop
install -m 755 ${WORKDIR}/suspend.sh ${D}/${bindir}/suspend.sh
}
|