This repository was archived by the owner on Sep 2, 2021. It is now read-only.
File tree 1 file changed +11
-6
lines changed 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 14
14
rm -rf cef
15
15
unzip cef.zip
16
16
mv $zipname cef
17
+ ./make_symlinks.sh
17
18
18
19
# get libudev0 for Ubuntu 13.04
19
20
if egrep -q " 13\.04" /etc/issue; then
20
- wget -O libudev0_175-0ubuntu19_i386.deb http://launchpadlibrarian.net/132294322/libudev0_175-0ubuntu19_i386.deb
21
- dpkg -i * .deb
22
- apt-get install -f
21
+ if [ ! -f libudev0.deb ]; then
22
+ wget -O libudev0.deb http://launchpadlibrarian.net/132294322/libudev0_175-0ubuntu19_i386.deb
23
+ fi
24
+
25
+ sudo dpkg -i * .deb
26
+ sudo apt-get install -f
23
27
fi
24
28
25
29
# download chromium dependency script
26
30
if [ ! -f install-build-deps.sh ]; then
27
- wget -O install-build-deps.sh http ://src.chromium.org/svn/trunk/src/build /install-build-deps.sh
31
+ wget -O install-build-deps.sh https ://gist.github.com/jasonsanjose/5514813/raw/8f333053a1a1180c2bfd4aabca94d4cff76e8595 /install-build-deps.sh
28
32
chmod 755 install-build-deps.sh
29
33
fi
30
34
31
35
# install dependecies
32
- install-build-deps.sh --no-chromeos-fonts
36
+ ./ install-build-deps.sh --no-chromeos-fonts
33
37
34
38
popd
35
39
36
40
# install and run gyp to create makefile
37
- apt-get install gyp
41
+ sudo apt-get install gyp
42
+
38
43
gyp --depth .
You can’t perform that action at this time.
0 commit comments