blob: 254bf467755a84c76bd7c58c53e080e04d1e9380 (
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
29
30
|
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/
}
SRC_URI[md5sum] = "e485b0c8424dc9666078d482d22447da"
SRC_URI[sha256sum] = "6a7455e4a066d5ecd9520feb9cd7bb1a7ecfe267faef32cd04a97b5c1738f8ec"
|