blob: 479308d64c26842b1d38f3e624bab309d9523318 (
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
|
DESCRIPTION = "GPE frontend for libfsi-client"
LICENSE = "gpl"
inherit gpe
SRC_URI = "http://dominion.kabel.utwente.nl/koen/pda/files/gpe-fsi.tar.bz2"
PR = "r1"
DEPENDS = "libgpewidget fsi-client gtk+"
SECTION = "gpe"
S ="${WORKDIR}/gpe-fsi"
do_compile() {
oe_runmake all
}
do_install() {
install -d ${D}${bindir}
install -d ${D}${libdir}
install -d ${D}/usr/share/applications
install -d ${D}/usr/share/pixmaps/
install gpe-fsi ${D}${bindir}
install gpe-fsi.desktop ${D}/usr/share/applications/
install gpe-fsi.png ${D}/usr/share/pixmaps/
}
|