aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/suspend-desktop/suspend-desktop_1.0.bb
blob: cb084f344ad14712d31ac3ae9366a246a7c73302 (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
SECTION = "gpe"
PRIORITY    = "optional"
DESCRIPTION = "Suspend feature for the application launcher menu."
LICENSE     = "GPL"

PR          = "r3"

DISTRO_APM ?= "apm"
RDEPENDS_${PN}    = "gpe-conf"
RRECOMMENDS_${PN} = "${DISTRO_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
}