summaryrefslogtreecommitdiffstats
path: root/recipes/suspend-desktop/suspend-desktop_1.0.bb
blob: 8fcdfea08db9cfd97b1166a9b07bc9f2fdcc5daf (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          = "r2"

DISTRO-apm ?= "apm"
RDEPENDS    = "gpe-conf"
RRECOMMENDS = "${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
}