Chromium – How to Update Chromium Daily Builds Manually

chromiumgoogle-chromeupdatesupgrade

I've downloaded and ran the chromium from http://download-chromium.appspot.com/ to receive daily builds of chrome for ubuntu. But I can't find a way to manually update it.
Yes, there is a repository dedicated for it (https://launchpad.net/~chromium-daily/+archive/ubuntu/ppa) but it got discontinued.

I there a way to apply updates for chromium manually?

Best Answer

Install this ppa "Canonical Chromium Builds" team

  $ sudo add-apt-repository ppa:canonical-chromium-builds/stage
  $ apt-get update

Use build-dep action of aptitude before installing chromium-browser

  $ aptitude -v -V build-dep chromium-browser
  ..
  The following actions will resolve these dependencies:

     Upgrade the following packages:                                         
  1)    ..
  Accept this solution? [Y/n/q/?] y
  ..
  $ sudo aptitude install chromium-browser

See also How to install latest package version of a ppa?