Skip to content

Instantly share code, notes, and snippets.

@penk
Created December 7, 2013 11:06
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save penk/7839838 to your computer and use it in GitHub Desktop.
Save penk/7839838 to your computer and use it in GitHub Desktop.
# fetch Oxide WebView repo
bzr branch lp:oxide
# install gclient
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=$PATH:`pwd`/depot_tools
# get Chromium source and dependencies (~7.8G)
cd oxide/chromium/
gclient sync --gclientfile=../gclient.conf
./src/build/install-build-deps.sh --no-chromeos-fonts
# apply patch (somehow quilt doesn't work for me)
cd src/
for i in `cat ../../patches/series`; do patch -p1 < ../../patches/$i; done
# compile and install
qmake -r
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment