Yes, I forget to add this line...
Will update this tonight, and double-check the PKGBUILD this time.
Search Criteria
Package Details: firefox-nightly 137.0a1+20250213.1+h67ec343f7371-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/firefox-nightly.git (read-only, click to copy) |
---|---|
Package Base: | firefox-nightly |
Description: | Fast, Private & Safe Web Browser (Nightly version) |
Upstream URL: | https://www.mozilla.org/firefox/channel/desktop/#nightly |
Keywords: | browser gecko web |
Licenses: | MPL-2.0 |
Submitter: | None |
Maintainer: | heftig |
Last Packager: | heftig |
Votes: | 615 |
Popularity: | 0.83 |
First Submitted: | 2008-09-10 14:23 (UTC) |
Last Updated: | 2025-02-13 07:59 (UTC) |
Dependencies (57)
- alsa-lib
- at-spi2-core (at-spi2-core-gitAUR)
- bash (bash-devel-static-gitAUR, bash-devel-gitAUR, busybox-coreutilsAUR, bash-gitAUR)
- cairo (cairo-gitAUR)
- dbus (dbus-gitAUR, dbus-selinuxAUR)
- ffmpeg (ffmpeg-nvcodec-11-1-gitAUR, ffmpeg-cudaAUR, ffmpeg-ffplayoutAUR, ffmpeg-headlessAUR, ffmpeg-fullAUR, ffmpeg-decklinkAUR, ffmpeg-amd-fullAUR, ffmpeg-gitAUR, ffmpeg-full-gitAUR, ffmpeg-amd-full-gitAUR, ffmpeg-obsAUR, ffmpeg-libfdk_aacAUR)
- fontconfig (fontconfig-gitAUR, fontconfig-ubuntuAUR)
- freetype2 (freetype2-macosAUR, freetype2-qdoledAUR, freetype2-gitAUR, freetype2-qdoled-aw3225qfAUR)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- gdk-pixbuf2 (gdk-pixbuf2-gitAUR)
- glib2 (glib2-gitAUR, glib2-selinuxAUR, glib2-patched-thumbnailerAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classic-xfceAUR, gtk3-classicAUR, gtk3-patched-filechooser-icon-viewAUR)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- libpulse (pulseaudio-dummyAUR, libpulse-gitAUR)
- libx11 (libx11-gitAUR)
- libxcb (libxcb-gitAUR)
- libxcomposite
- libxdamage
- libxext (libxext-gitAUR)
- Show 37 more dependencies...
Required by (97)
- firefox-gnome-theme-nightly-git (optional)
- firefox-nightly-i18n-ach
- firefox-nightly-i18n-af
- firefox-nightly-i18n-all
- firefox-nightly-i18n-an
- firefox-nightly-i18n-ar
- firefox-nightly-i18n-ast
- firefox-nightly-i18n-az
- firefox-nightly-i18n-be
- firefox-nightly-i18n-bg
- firefox-nightly-i18n-bn
- firefox-nightly-i18n-br
- firefox-nightly-i18n-bs
- firefox-nightly-i18n-ca
- firefox-nightly-i18n-ca-valencia
- firefox-nightly-i18n-cak
- firefox-nightly-i18n-cs
- firefox-nightly-i18n-cy
- firefox-nightly-i18n-da
- firefox-nightly-i18n-de
- Show 77 more...
Sources (5)
Latest Comments
« First ‹ Previous 1 .. 32 33 34 35 36 37 38 39 40 41 42 .. 56 Next › Last »
xenom commented on 2014-02-10 08:16 (UTC)
n7cmdr commented on 2014-02-09 00:59 (UTC)
I diffed your newest PKGBUILD against mine, and it seems that you missed installing the vendor.js file; it gets downloaded as one of the sources, but the install statement is missing from package().
xenom commented on 2014-02-06 08:17 (UTC)
curl modified : -v and the redirection removed. I keeped the grep in the case of the tarball will not be first. The options and redirection was a bad copy/paste from another PKGBUILD the first time I added this line.
Installation directory modified to use $_version instead of $pkgver.
Det commented on 2014-02-05 19:46 (UTC)
_srcsum="$(curl -vs "${_srcurl}/${_file}.checksums" 2>&1 | grep bz | grep sha512 | cut -d " " -f1)"
I don't really understand the combination of both --silent and --verbose, as well as the redirection of errors to stdin, but these are completely unnecessary :).
In fact, since the tarball seems to be listed first in the .checksums, a simple:
_srcsum="$(curl -s "${_srcurl}/${_file}.checksums" | cut -d " " -f1 | head -1)"
Would do. Or to fuglify:
_srcsum="$(curl -s "${_srcurl}/${_file}.checksums" | sed -n '1s/ .*//p')"
xenom commented on 2014-02-05 18:08 (UTC)
Updated to 30.Oa1
Modification suggested by jreese added : pkgver and vendor.js. Thanks.
KingYes commented on 2014-02-05 17:31 (UTC)
Please change the version to 30.0a1.
n7cmdr commented on 2014-01-14 00:00 (UTC)
I've also added a simple vendor.js that disables the built-in update check, so that it stops bugging you to update something that you ideally shouldn't have permissions to update. ;)
https://github.com/jreese/arch/blob/master/firefox-nightly/PKGBUILD
https://github.com/jreese/arch/blob/master/firefox-nightly/vendor.js
Pinned Comments
heftig commented on 2022-07-27 22:26 (UTC)
Instead of building this yourself, please use the repository from https://bbs.archlinux.org/viewtopic.php?id=117157.
Not only do you skip the very time-consuming builds, but the published package also has debug symbols at Mozilla's crash reports service, which helps tremendously with finding or filing bugs for any crashes you get.
I consider this the canonical
firefox-nightly
package for Arch Linux.Alternatively, download Firefox Nightly straight from Mozilla, extract it to a writable place (e.g.
~/.local/firefox-nightly
) and let it update itself using the integrated updater.