forked from EFForg/https-everywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-dev-dependencies.sh
executable file
·127 lines (115 loc) · 4.27 KB
/
install-dev-dependencies.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/bin/bash
# Install packages that are necessary and/or useful to build and debug
# HTTPS Everywhere
set -o errexit
if [ "$1" != "--no-prompt" ]; then
echo
echo "Warning: Installing the development dependencies for HTTPS Everywhere"
echo "may alter your system, installing requirements both within the package"
echo "management system and also external binaries."
echo
echo -n "Are you sure you want to continue? [y/N]: "
read CONTINUE
CONTINUE=`echo $CONTINUE | xargs | head -c 1 | awk '{print tolower($0)}'`
if [ "$CONTINUE" != "y" ]; then
exit
fi
echo
fi
if [ $UID != 0 ]; then
SUDO_SHIM=sudo
fi
if [ "`uname -m`" == "x86_64" ]; then
ARCH=64
else
ARCH=32
fi
# debian based installation
if type apt-get>/dev/null 2>&1; then
$SUDO_SHIM apt-get update
$SUDO_SHIM apt-get install -y lsb-release
BROWSERS="firefox chromium-browser"
CHROMEDRIVER="chromium-chromedriver"
if [[ "$(lsb_release -is)" == "Debian" ]]; then
# Chromium takes the name of 'chromium' instead of 'chromium-browser' in
# Debian 7 (wheezy) and later.
BROWSERS="firefox-esr chromium"
CHROMEDRIVER="chromium-driver"
fi
$SUDO_SHIM apt-get install -y libxml2-dev libxml2-utils libxslt1-dev \
python3-dev $BROWSERS zip sqlite3 python3-pip libcurl4-openssl-dev xvfb \
nodejs \
npm \
libssl-dev git curl $CHROMEDRIVER
if ! type geckodriver >/dev/null 2>&1; then
curl -LO "https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux$ARCH.tar.gz"
tar -zxvf "geckodriver-v0.24.0-linux$ARCH.tar.gz"
rm -f "geckodriver-v0.24.0-linux$ARCH.tar.gz"
$SUDO_SHIM mv geckodriver /usr/bin/geckodriver
$SUDO_SHIM chown root /usr/bin/geckodriver
$SUDO_SHIM chmod 755 /usr/bin/geckodriver
fi
if [ ! -f /usr/lib/chromium-browser/chromedriver ] && [ -f `which chromedriver` ]; then
$SUDO_SHIM ln -s `which chromedriver` /usr/lib/chromium-browser/chromedriver
fi
# macOS installation
elif type brew >/dev/null 2>&1; then
brew list python &>/dev/null || brew install python
brew cask install chromedriver
brew install libxml2 gnu-sed
brew install node
if ! echo $PATH | grep -ql /usr/local/bin ; then
echo '/usr/local/bin not found in $PATH, please add it.'
fi
# distros that use rpm (Fedora, Suse, CentOS) installation
elif type dnf >/dev/null 2>&1; then
$SUDO_SHIM dnf install -y firefox gcc git libcurl-devel libxml2-devel \
libxslt-devel python3-devel redhat-rpm-config xorg-x11-server-Xvfb which \
findutils procps openssl openssl-devel chromium GConf2
if ! type chromedriver >/dev/null; then
curl -O "https://chromedriver.storage.googleapis.com/2.23/chromedriver_linux$ARCH.zip"
unzip "chromedriver_linux$ARCH.zip"
rm -f "chromedriver_linux$ARCH.zip"
$SUDO_SHIM mv chromedriver /usr/bin/chromedriver
$SUDO_SHIM chown root /usr/bin/chromedriver
$SUDO_SHIM chmod 755 /usr/bin/chromedriver
fi
if ! type geckodriver >/dev/null 2>&1; then
curl -LO "https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-macos.tar.gz"
tar -zxvf "geckodriver-v0.24.0-macos.tar.gz"
rm -f "geckodriver-v0.24.0-macos.tar.gz"
$SUDO_SHIM mv geckodriver /usr/bin/geckodriver
$SUDO_SHIM chown root /usr/bin/geckodriver
$SUDO_SHIM chmod 755 /usr/bin/geckodriver
fi
# This is needed for Firefox on some systems. See here for more information:
# https://github.com/EFForg/https-everywhere/pull/5584#issuecomment-238655443
if [ ! -f /var/lib/dbus/machine-id ]; then
$SUDO_SHIM sh -c 'dbus-uuidgen > /var/lib/dbus/machine-id'
fi
export PYCURL_SSL_LIBRARY=openssl
#Node
curl -sL https://rpm.nodesource.com/setup_12.x | $SUDO_SHIM bash -
$SUDO_SHIM yum install -y nodejs
$SUDO_SHIM yum install gcc-c++ make
else
echo \
"Your distro isn't supported by this script yet!"\
"Please install dependencies manually."
exit
fi
# Get the addon SDK submodule and rule checker
git submodule init
git submodule update
# Install Python packages
pip3 install --user -r requirements.txt
cd test/rules
pip3 install --user -r requirements.txt
cd -
cd test/chromium
pip3 install --user -r requirements.txt
cd -
# Install Node Package for CRX Verification
$SUDO_SHIM npm -g i crx3-utils
# Install git hook to run tests before pushing.
ln -sf ../../test.sh .git/hooks/pre-push