blob: caf13236146e8fed0efa27d9f11b69dc68f7278b (
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
|
SECTION = "x11/network"
DESCRIPTION = "Lightweight gtk+ browser."
LICENSE = "GPL"
DEPENDS = "gtk+-1.2"
SRC_URI="http://www.dillo.org/download/dillo-${PV}.tar.bz2 \
file://font.patch;patch=1 \
file://dpi.patch;patch=1 \
file://dpid.patch;patch=1 \
file://dillo.desktop \
file://dillo.png"
MAINTAINER = "Graeme Gregory <dp@xora.org.uk>"
PRIORITY = "optional"
RCONFLICTS = "dillo2"
S = "${WORKDIR}/dillo-${PV}/"
inherit autotools pkgconfig
FILES_${PN} += " /usr/lib/dillo/ /usr/bin/dpid /usr/bin/dpidc "
do_install_append() {
install -d ${D}${datadir}/applications
install -d ${D}${datadir}/pixmaps
install -m 0644 ${WORKDIR}/dillo.desktop ${D}${datadir}/applications/dillo.desktop
install -m 0644 ${WORKDIR}/dillo.png ${D}${datadir}/pixmaps/dillo.png
}
|