Package Details: chromium-dev 126.0.6423.2-1

Git Clone URL: https://aur.archlinux.org/chromium-dev.git (read-only, click to copy)
Package Base: chromium-dev
Description: The open-source project behind Google Chrome (Dev Channel)
Upstream URL: http://www.chromium.org
Keywords: browser web
Licenses: BSD
Submitter: None
Maintainer: sl1pkn07
Last Packager: sl1pkn07
Votes: 160
Popularity: 0.010897
First Submitted: 2010-05-17 09:04 (UTC)
Last Updated: 2024-04-21 19:18 (UTC)

Dependencies (84)

Required by (0)

Sources (13)

Latest Comments

« First ‹ Previous 1 .. 90 91 92 93 94 95 96 97 98 99 100 .. 152 Next › Last »

<deleted-account> commented on 2012-09-08 05:32 (UTC)

crashes some sites: facebook, orkut and some albums picasa

sl1pkn07 commented on 2012-09-05 08:38 (UTC)

adblock and autopagerize fails for me

wuffleton commented on 2012-09-05 08:33 (UTC)

Is anyone else experiencing constant crashes of some of their extensions with the latest version of chromium? Adblock and Flag for Chrome won't load at all for me and simply crash every time I try to reload them.

sl1pkn07 commented on 2012-08-31 10:09 (UTC)

good fix -> if "sudo pacman -Qo /usr/lib/libudev.so.0" result is don't provide any package. remove libudev.so.0 (rm /usr/lib/libudev.so) and rebuild chromium-dev. if other program fail to use libudev.so.0, rebuild these program (all packages in core/extra/community/testing use libudev.so.1 instead libudev.so.0) (probably AUR package) ugly fix -> sudo rm /usr/lib/libudev.so.0 && ln -s /usr/lib/libudev.so.1.1.0 /usr/lib/libudev.so.0

lockheed commented on 2012-08-31 08:56 (UTC)

$ chromium-browser /opt/chromium-browser/chrome: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory And I already have all this in /usr/lib/ libudev.a libudev.so.0 libudev.so.1.1.0 libudev.so libudev.so.1

sl1pkn07 commented on 2012-08-28 19:14 (UTC)

finaly update to 23.0.1246.0 - use V8 from extra (finaly update to latest version) - use nacl-toolchain-newlib from extra instead external build (keep old code in PKGBUILD) - add new makedependencies - Remove unnecesary files (resources folder) greetings and sorry the inconveniencies (i'm back to the holidays)

misc commented on 2012-08-25 20:28 (UTC)

Wrote a few lines that move the nacl_sdk download to pacman, thus requiring only one when it does not change over various Chromium releases. The relevant parts: 1. At the top of the PKGBUILD: _nacl_sdk=$(curl -s 'https://commondatastorage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/naclsdk_manifest2.json' | grep linux -B 4 | tail -n 5 | head -n 1 | cut -d '/' -f 7) (Note: The json file does change its structure occasionally. You get the most recent Chromium tarball with eg.: "curl -s 'https://gsdview.appspot.com/chromium-browser-official/?marker=chromium-23.0.1245.0.tar.bz' | grep chromium-2 | tail -1 | cut -d '>' -f 2 | cut -d '/' -f 3 | cut -c 10-20" To get then the version for the Chrome rpm with the Pepper Flash plugin, use "_rpm_ver="$(cat filelists.xml | grep -e "unstable" | cut -d \" -f10)"" as replacement variable.) 2. In source, add: naclsdk_linux-$_nacl_sdk.tar.bz2::http://commondatastorage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/$_nacl_sdk/naclsdk_linux.tar.bz2 The first part adds the revision to the downloaded file's name, so pacman can know if any present one is outdated. 3. Within the "if [ "${_use_nacl}" = 1 ]; then" paragraph change: i) only rm -fr sdk_cache ii) add below that "mv $srcdir/pepper_2? $srcdir/nacl_sdk/"${_pepper_version}"" That should be it. However, I did not care about the pacman checksum, since I build with --skipchecksums.