Skip to content

Commit

Permalink
Firefox: Update to version 113.0.1
Browse files Browse the repository at this point in the history
add MOZ_PARALLEL_BUILD to control parrallel builds
  • Loading branch information
david committed May 17, 2023
1 parent 2ca61f2 commit 92dda66
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions firefox.be0
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

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

# BEE_VERSION firefox-113.0-0
# BEE_VERSION firefox-113.0.1-0

#https://ftp.mozilla.org/pub/firefox/releases/$pkgversion/SOURCE to find the right download link
#SRCURL[0]="https://ftp.mozilla.org/pub/firefox/releases/${PKGVERSION}/source/firefox-${PKGVERSION}.source.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/ca30b5c3726efe2bbb014edf80eae6f8/firefox-113.0.source.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/30f26a4af0436d82d88d2de07d858191/firefox-113.0.1.source.tar.xz"

#BEE_BUILDTYPE=autotools
#build_in_sourcedir
Expand All @@ -15,6 +15,11 @@ mee_configure() {

. /pkg/rustc-1.68.2-0/profile

if [[ ${BEE_MAKEFLAGS:: 2} == "-j" ]]; then
BEE_MAKEFLAGS=${BEE_MAKEFLAGS: 2}
fi


cat > ${S}/mozconfig <<-EOF
ac_add_options --prefix="${PREFIX}"
ac_add_options --enable-application=browser
Expand All @@ -29,7 +34,7 @@ mee_configure() {
ac_add_options --disable-updater
ac_add_options --enable-bootstrap
ac_add_options --without-wasm-sandboxed-libraries
mk_add_options MOZ_MAKE_FLAGS="${BEE_MAKEFLAGS}"
mk_add_options MOZ_PARALLEL_BUILD="${BEE_MAKEFLAGS}"
mk_add_options MOZ_OBJDIR=$B
EOF
export MOZBUILD_STATE_PATH=${B}/mozbuild
Expand Down

0 comments on commit 92dda66

Please sign in to comment.