Skip to content

Update Firefox from 55.03 to 57.0 #532

Merged
merged 3 commits into from
Nov 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions cargo.be0

This file was deleted.

5 changes: 2 additions & 3 deletions firefox.be0
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

# BEE_VERSION firefox-55.0.3-0
# BEE_VERSION firefox-57.0-0

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

Expand All @@ -19,8 +19,7 @@ mee_configure() {
--disable-dbus \
--disable-crashreporter \
--disable-tests \
--enable-optimize \
--enable-safe-browsing
--enable-optimize
}

mee_build_post() {
Expand Down
12 changes: 9 additions & 3 deletions rustc.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION rustc-1.16.0-0
# BEE_VERSION rustc-1.21.0-2

SRCURL[0]="https://static.rust-lang.org/dist/rustc-${PKGVERSION}-src.tar.gz"

Expand All @@ -26,11 +26,17 @@ export RUST_BACKTRACE=1
mee_configure() {
#rust creates .cargo dir in your home
export HOME=${S}
${S}/configure --prefix=${PREFIX}
${S}/configure --prefix=${PREFIX} \
--mandir=${MANDIR} \
--libdir=${LIBDIR} \
--enable-local-rust \
--disable-rpath \
--enable-extended \
--disable-codegen-tests
}

mee_build() {
start_cmd make ${BEE_MAKEFLAGS}
CC=clang CXX=clang++ start_cmd make ${BEE_MAKEFLAGS}
}

mee_install() {
Expand Down