Skip to content

Update Firefox ESR from 45.9.0 to 52.3.0 #476

Merged
merged 1 commit into from
Sep 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 11 additions & 6 deletions firefox_esr.be0
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
#!/bin/env beesh

# BEE_VERSION firefox_esr-45.9.0-1
# BEE_VERSION firefox_esr-52.3.0-0

#export BEE_TMP_TMPDIR=/dev/shm BEE_TMP_BUILDROOT=/dev/shm/bee-root BEE_MAKEFLAGS='-j80'

SRCURL[0]="https://ftp.mozilla.org/pub/firefox/releases/${PKGVERSION}${PKGEXTRANAME}/source/firefox-${PKGVERSION}${PKGEXTRANAME}.source.tar.xz"
SRCURL[0]="https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PKGVERSION}${PKGEXTRANAME}/source/firefox-${PKGVERSION}${PKGEXTRANAME}.source.tar.xz"

mee_configure() {
bee_configure \
${S}/configure \
--prefix=/usr \
--enable-application=browser \
--disable-necko-wifi \
--enable-official-branding \
--without-system-icu \
--without-system-nspr \
--disable-dbus \
--disable-update \
--disable-crashreporter \
--disable-tests \
--enable-optimize \
--enable-safe-browsing
}

mee_build() {
start_cmd make $BEE_MAKEFLAGS
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you need to write out bee_build, and below bee_install?

}

mee_build_post() {

# create menu entry
Expand All @@ -40,6 +42,9 @@ mee_build_post() {
EOF
}

mee_install() {
start_cmd make install DESTDIR=${D}
}

mee_install_post() {
if [ "${PKGEXTRANAME}" = "esr" ] ; then
Expand Down