Created
December 7, 2013 11:06
-
-
Save penk/7839838 to your computer and use it in GitHub Desktop.
How to Build Oxide WebView https://code.launchpad.net/~oxide-developers/oxide/oxide.trunk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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