Package Details: google-chrome-beta 126.0.6478.36-1

Git Clone URL: https://aur.archlinux.org/google-chrome-beta.git (read-only, click to copy)
Package Base: google-chrome-beta
Description: The popular web browser by Google (Beta Channel)
Upstream URL: https://www.google.com/chrome
Keywords: chromium
Licenses: custom:chrome
Provides: google-chrome
Submitter: None
Maintainer: gromit
Last Packager: gromit
Votes: 355
Popularity: 0.82
First Submitted: 2009-12-08 19:09 (UTC)
Last Updated: 2024-06-05 20:50 (UTC)

Dependencies (12)

Required by (37)

Sources (3)

Pinned Comments

gromit commented on 2023-11-30 17:09 (UTC)

When reporting this package as outdated make sure there is indeed a new version for Linux Desktop. You can have a look at the "Beta updates" tag in Release blog for this.

You can also run this command to obtain the version string for the latest chrome beta version:

$ curl -sSf https://dl.google.com/linux/chrome/deb/dists/stable/main/binary-amd64/Packages | \
     grep -A1 "Package: google-chrome-beta" | \
     awk '/Version/{print $2}' | \
     cut -d '-' -f1

Do not report updates for ChromeOS, Android or other platforms stable versions as updates here.

Latest Comments

« First ‹ Previous 1 .. 18 19 20 21 22 23 24 25 26 27 Next › Last »

<deleted-account> commented on 2011-07-02 16:59 (UTC)

Thanks t3ddy.

t3ddy commented on 2011-06-30 16:44 (UTC)

this line: "ar -xv google-chrome-${_channel}_current_${_arch}.deb" extracts the deb for rpm you need rpmextract then you have to install the extracted files to the proper position into pkgdir

<deleted-account> commented on 2011-06-30 15:10 (UTC)

Arch Linux AUR Noob Question: How do you use a non tarballed and gzipped source from another package manager (like debian or rpm) so that you can extract the source and build a package with makepkg?

<deleted-account> commented on 2011-05-23 19:55 (UTC)

Oh, I thank you for the answer.

t3ddy commented on 2011-05-23 19:26 (UTC)

The original .deb file has gconf as dependency, you could try remove it and see what happens

<deleted-account> commented on 2011-03-26 01:16 (UTC)

When pciutils now in testing enters core the libpci dependency should be dropped: https://aur.archlinux.org/packages.php?ID=38263

dhaines commented on 2011-01-11 21:25 (UTC)

That sounds absolutely correct. Thanks!

t3ddy commented on 2011-01-11 21:23 (UTC)

As I said before, in then next release I'll remove the grep in the "if", since I know there are files that contain that string. Checking if there are files that contain that string, when I know that there are, is unecessary in my opinion. Are you in accord with me (despite of my english :))?

dhaines commented on 2011-01-11 21:13 (UTC)

I think I figured out the problem. I'm referring to the grep in the "if" section, and you're referring to the one in the "then" section. Keep the one in the "then" section as-is, without the "-q" (or pass "-s" if you want to suppress error messages). The one in the "if" part is only there to make sure that "/google/chrome" appears somewhere in the directory before you run sed, so you only need it to return the right code (0). In sum, it should be: if grep -Rlq "/google/chrome" * > /dev/null 2>&1 then sed -i "s/google\/chrome/google-chrome/g" $(grep -Rls "/google/chrome" *) fi

t3ddy commented on 2011-01-11 21:05 (UTC)

With -s I get exit code 2, but it gives me the files I'm looking for. With -q I get exit code 0, but it doesn't give me the files I'm looking for.