blob: 3069730fbbc7bd96a6ad32d82e6fc30e83a84e9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require gpe-mini-browser.inc
PR = "r0"
SRC_URI = "${GPE_MIRROR}/gpe-mini-browser-${PV}.tar.gz"
DESCRIPTION = "A lightweight webbrowser for the GPE platform (Hildon UI)"
DEPENDS = "osb-nrcit libosso hildon-lgpl hildon-fm libgpewidget"
EXTRA_OECONF = "--enable-hildon"
S = "${WORKDIR}/gpe-mini-browser-${PV}"
inherit autotools
do_install() {
install -d ${D}/usr/share/applications/hildon
install -m 0644 ${S}/hildon/gpe-mini-browser.desktop ${D}/usr/share/applications/hildon/gpe-mini-browser.desktop
install -d ${D}/usr/share/pixmaps
install -m 0644 ${S}/gpe-mini-browser.png ${D}/usr/share/pixmaps/gpe-mini-browser.png
autotools_do_install
}
|