blob: 9cc670a9ba52a51384011b939c7b95805a90b51f (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
DESCRIPTION ?= "Browser made by mozilla"
SRC_URI += "file://mozilla-${PN}.png file://mozilla-${PN}.desktop"
PARALLEL_MAKE = ""
MOZPV ?= "${PV}"
PACKAGES =+ "${PN}-inspector"
PACKAGES += "${PN}-sdk"
FILES_${PN}-inspector = " ${libdir}/${PN}-${MOZPV}/chrome/inspector* \
${libdir}/${PN}-${MOZPV}/components/*nspector* \
${libdir}/${PN}-${MOZPV}/extensions/inspector* \
${libdir}/${PN}-${MOZPV}/defaults/preferences/inspector* \
"
FILES_${PN} = "${bindir}/${PN} \
${datadir}/applications/ \
${datadir}/pixmaps/ \
${libdir}/${PN}-${MOZPV}/* \
${libdir}/${PN}-${MOZPV}/.autoreg \
${bindir}/defaults"
FILES_${PN}-dev += "${datadir}/idl ${bindir}/${PN}-config"
FILES_${PN}-sdk += "${libdir}/${PN}-devel-${MOZPV}"
FILES_${PN}-dbg += " ${libdir}/${PN}-*/.debug \
${libdir}/${PN}-*/*/.debug \
${libdir}/${PN}-*/*/*/.debug \
${libdir}/${PN}-*/*/*/*/.debug \
${bindir}/.debug \
"
do_install() {
oe_runmake DESTDIR="${D}" destdir="${D}" install
install -d ${D}${datadir}/applications
install -d ${D}${datadir}/pixmaps
install -m 0644 ${WORKDIR}/mozilla-${PN}.desktop ${D}${datadir}/applications/
install -m 0644 ${WORKDIR}/mozilla-${PN}.png ${D}${datadir}/pixmaps/
rm -f ${D}${libdir}/${PN}-*/TestGtkEmbed
}
pkg_postinst_${PN}() {
# work around requirement for root access on first startup
chmod -R a+w ${libdir}/${PN}* ||true
}
do_stage() {
autotools_stage_all
}
|