blob: 813417160de31ed6bd37f5b04c99c37c06439034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
PR = "r1"
SRC_URI = "http://stag.mind.be/gpe-helpviewer.tar.bz2"
DEPENDS = "gtkhtml-3.0"
S = "${WORKDIR}/gpe-helpviewer"
inherit autotools
do_install() {
install -d ${D}${docdir}/gpe-helpviewer
install -m 0644 ${S}/gpe-helpviewer.html ${D}${docdir}/gpe-helpviewer
install -d ${D}/usr/share/applications
install -m 0644 ${S}/gpe-helpviewer.desktop ${D}/usr/share/applications/gpe-helpviewer.desktop
install -d ${D}/usr/share/pixmaps
install -m 0644 ${S}/gpe-help.png ${D}/usr/share/pixmaps/gpe-help.png
autotools_do_install
}
|