blob: f5e020dc6882781e21dca85fe5e31ed8c5e6dc07 (
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
|
SRC_URI += "file://mozilla-firefox.png file://mozilla-firefox.desktop"
PACKAGES =+ "firefox-inspector"
FILES_firefox-inspector = " ${libdir}/firefox-${PV}/chrome/inspector* \
${libdir}/firefox-${PV}/components/*nspector* \
${libdir}/firefox-${PV}/extensions/inspector* \
${libdir}/firefox-${PV}/defaults/preferences/inspector* \
"
FILES_${PN} = "${bindir}/firefox ${datadir}/applications/ ${datadir}/pixmaps/ ${libdir}/firefox-${PV}/* ${bindir}/defaults"
FILES_${PN}-dev += "${datadir}/idl ${bindir}/firefox-config"
FILES_${PN}-dbg += " ${libdir}/firefox-${PV}/.debug \
${libdir}/firefox-${PV}/*/.debug \
${libdir}/firefox-${PV}/*/*/*/.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-firefox.desktop ${D}${datadir}/applications/
install -m 0644 ${WORKDIR}/mozilla-firefox.png ${D}${datadir}/pixmaps/
rm -f ${D}${libdir}/firefox-${PV}/TestGtkEmbed
}
pkg_postinst_firefox() {
# work around requirement for root access on first startup
chmod -R a+w ${libdir}/firefox*
}
do_stage() {
autotools_stage_all
}
|