diff --git a/firefox.be0 b/firefox.be0 index 0a4a3ce8a..8690bb4dd 100755 --- a/firefox.be0 +++ b/firefox.be0 @@ -2,15 +2,16 @@ #export BEE_TMP_TMPDIR=/dev/shm BEE_TMP_BUILDROOT=/dev/shm/bee-root BEE_MAKEFLAGS='-j80' -# BEE_VERSION firefox-59.0.1-0 +# BEE_VERSION firefox-59.0.2-0 #https://ftp.mozilla.org/pub/firefox/releases/$pkgversion/SOURCE to find the right download link -SRCURL[0]="https://hg.mozilla.org/releases/mozilla-release/archive/3db9e3d52b17563efca181ccbb50deb8660c59ae.tar.gz" +SRCURL[0]=`curl -s https://ftp.mozilla.org/pub/firefox/releases/$PKGVERSION/SOURCE |grep tar.gz | cut -d" " -f6` -BEE_BUILDTYPE=autotools +#BEE_BUILDTYPE=autotools +#build_in_sourcedir mee_configure() { - start_cmd cat > ${S}/mozconfig << EOF + cat > ${S}/mozconfig << EOF ac_add_options --prefix=/usr ac_add_options --enable-application=browser ac_add_options --disable-necko-wifi @@ -26,8 +27,7 @@ EOF } mee_build() { - cd $S - make + ${S}/mach build } mee_build_post() { @@ -52,7 +52,6 @@ mee_build_post() { } mee_install() { - cd $B start_cmd make install DESTDIR=$D }