blob: 875c675b2ce8740496709c57a7761346f170dbdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "GPE terminal wrapper"
SECTION = "gpe"
LICENSE = "GPL"
RRECOMMENDS = "rxvt-unicode"
PR = "r1"
PV = "1.1+svn-${SRCDATE}"
DEFAULT_PREFERENCE = "-1"
SRC_URI = "${GPE_EXTRA_SVN} \
file://svn-build.patch;patch=1 \
file://${PN}.desktop \
file://${PN}.png"
S = "${WORKDIR}/${PN}"
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/
}
|