blob: fa9efba84bc642d65bffbdda2f01268a811e2cb0 (
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
|
SECTION = "gpe"
PRIORITY = "optional"
DESCRIPTION = "Suspend feature for the application launcher menu."
LICENSE = "GPL"
PR = "r1"
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
}
|