Package Details: google-chrome-dev 128.0.6559.0-1

Git Clone URL: https://aur.archlinux.org/google-chrome-dev.git (read-only, click to copy)
Package Base: google-chrome-dev
Description: The popular web browser by Google (Dev Channel)
Upstream URL: https://www.google.com/chrome
Keywords: chromium
Licenses: custom:chrome
Provides: google-chrome
Submitter: None
Maintainer: gromit
Last Packager: gromit
Votes: 649
Popularity: 0.31
First Submitted: 2009-06-05 21:02 (UTC)
Last Updated: 2024-06-27 21:11 (UTC)

Dependencies (12)

Required by (40)

Sources (3)

Pinned Comments

gromit commented on 2023-07-19 17:01 (UTC) (edited on 2023-07-19 17:02 (UTC) by gromit)

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

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

$ curl -sSf https://dl.google.com/linux/chrome/deb/dists/stable/main/binary-amd64/Packages | \
     grep -A1 "Package: google-chrome-unstable" | \
     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 .. 54 55 56 57 58 59 60 61 62 63 64 .. 91 Next › Last »

ruario commented on 2012-01-21 20:57 (UTC)

@Det: Seems to be bigger and marginally slower to extract because the rpm is bzip2 compressed and the deb lzma compressed. That may change in the future. It is possible to use lzma or xz compression within rpms.

ruario commented on 2012-01-21 20:55 (UTC)

This is the line that fails when run on 32-bit machines: install -Dm644 "$srcdir/usr/share/man/man1/google-chrome.1" "$pkgdir/usr/share/man/man1/google-chrome.1" because it doesn't exist. google-chrome.1.gz exists instead. The PKGBUILD should attempt to compress any uncompressed man pages it finds and then do an install command using google-chrome.1.gz, i.e. if [ ! -e "$srcdir/usr/share/man/man1/google-chrome.1.gz" ]; then gzip -9 "$srcdir/usr/share/man/man1/google-chrome.1" fi install -Dm644 "$srcdir/usr/share/man/man1/google-chrome.1.gz" "$pkgdir/usr/share/man/man1/google-chrome.1.gz"

ruario commented on 2012-01-21 20:50 (UTC)

The reason some people have problems with the man pages and others not is down to architecture. if you run 64-bit the PKGBUILD will work, if 32-bit it won't because Google only compressed the 32-bit one. $ bsdtar tf google-chrome-unstable-18.0.1010.0-117846.i386.rpm | grep google-chrome.1 ./usr/share/man/man1/google-chrome.1.gz $ bsdtar tf google-chrome-unstable-18.0.1010.0-117846.x86_64.rpm | grep google-chrome.1 ./usr/share/man/man1/google-chrome.1

t3ddy commented on 2012-01-21 13:01 (UTC)

For some strange reason it doesn't extract man page, like makepkg and yaourt do.

ravicious commented on 2012-01-21 12:45 (UTC)

I'm using packer.

t3ddy commented on 2012-01-21 10:02 (UTC)

@ravicious and hagabaka what tool are you using?

ravicious commented on 2012-01-21 09:45 (UTC)

Thanks hagabaka, your solution works.

Det commented on 2012-01-20 13:52 (UTC)

Hmh, it seems the .rpm of the latest Dev Chrome is 33.3M in size - the .deb's only 25.3M. Extracting is also slower (~4.3s vs ~2.6s with a 6-core AMD Phenom and 7500rpm HDD).