blob: ef0bea9f0943c37dc0187f4c49a758dafec4b742 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
DESCRIPTION = "GPE terminal wrapper"
SECTION = "gpe"
LICENSE = "GPL"
RRECOMMENDS = "rxvt-unicode"
FILE_PR = "r1"
SRC_URI = "file://${PN}.desktop file://${PN}.png"
do_install() {
install -d ${D}${datadir}/applications
install -d ${D}${datadir}/pixmaps
install -m 0644 ${WORKDIR}/${PN}.desktop ${D}${datadir}/applications/
install -m 0644 ${WORKDIR}/${PN}.png ${D}${datadir}/pixmaps/
}
|