-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: install brotli for debian and redhat (#540)
- Loading branch information
1 parent
d84bee5
commit be17de5
Showing
8 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
install_brotli () { | ||
apt-get -qy update | ||
apt-get install -y sudo cmake wget unzip | ||
local BORTLI_VERSION="1.1.0" | ||
wget -q https://github.com/google/brotli/archive/refs/tags/v${BORTLI_VERSION}.zip || exit -1 | ||
unzip v${BORTLI_VERSION}.zip && cd ./brotli-${BORTLI_VERSION} && mkdir build && cd build || exit -1 | ||
local CMAKE=$(command -v cmake3 > /dev/null 2>&1 && echo cmake3 || echo cmake) || exit -1 | ||
${CMAKE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/brotli .. || exit -1 | ||
sudo ${CMAKE} --build . --config Release --target install || exit -1 | ||
if [ -d "/usr/local/brotli/lib64" ]; then | ||
echo /usr/local/brotli/lib64 | sudo tee /etc/ld.so.conf.d/brotli.conf | ||
else | ||
echo /usr/local/brotli/lib | sudo tee /etc/ld.so.conf.d/brotli.conf | ||
fi | ||
sudo ldconfig || exit -1 | ||
ln -sf /usr/local/brotli/bin/brotli /usr/bin/brotli | ||
cd ../.. | ||
rm -rf brotli-${BORTLI_VERSION} | ||
rm -rf /v${BORTLI_VERSION}.zip | ||
export SUDO_FORCE_REMOVE=yes | ||
apt purge -qy cmake sudo wget unzip | ||
apt-get remove --purge --auto-remove -y | ||
} | ||
install_brotli |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
install_brotli () { | ||
apt-get install -y sudo cmake wget unzip | ||
local BORTLI_VERSION="1.1.0" | ||
wget -q https://github.com/google/brotli/archive/refs/tags/v${BORTLI_VERSION}.zip || exit -1 | ||
unzip v${BORTLI_VERSION}.zip && cd ./brotli-${BORTLI_VERSION} && mkdir build && cd build || exit -1 | ||
local CMAKE=$(command -v cmake3 > /dev/null 2>&1 && echo cmake3 || echo cmake) || exit -1 | ||
${CMAKE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/brotli .. || exit -1 | ||
sudo ${CMAKE} --build . --config Release --target install || exit -1 | ||
if [ -d "/usr/local/brotli/lib64" ]; then | ||
echo /usr/local/brotli/lib64 | sudo tee /etc/ld.so.conf.d/brotli.conf | ||
else | ||
echo /usr/local/brotli/lib | sudo tee /etc/ld.so.conf.d/brotli.conf | ||
fi | ||
sudo ldconfig || exit -1 | ||
ln -sf /usr/local/brotli/bin/brotli /usr/bin/brotli | ||
cd ../.. | ||
rm -rf brotli-${BORTLI_VERSION} | ||
rm -rf /v${BORTLI_VERSION}.zip | ||
export SUDO_FORCE_REMOVE=yes | ||
apt purge -qy cmake sudo wget unzip | ||
apt-get remove --purge --auto-remove -y | ||
} | ||
install_brotli |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
install_brotli () { | ||
yum install -y sudo cmake3 wget unzip gcc | ||
export PATH=$PATH:/usr/local/bin | ||
local BORTLI_VERSION="1.1.0" | ||
wget -q https://github.com/google/brotli/archive/refs/tags/v${BORTLI_VERSION}.zip || exit -1 | ||
unzip v${BORTLI_VERSION}.zip && cd ./brotli-${BORTLI_VERSION} && mkdir build && cd build || exit -1 | ||
local CMAKE=$(command -v cmake3 > /dev/null 2>&1 && echo cmake3 || echo cmake) || exit -1 | ||
${CMAKE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/brotli .. || exit -1 | ||
sudo ${CMAKE} --build . --config Release --target install || exit -1 | ||
if [ -d "/usr/local/brotli/lib64" ]; then | ||
echo /usr/local/brotli/lib64 | sudo tee /etc/ld.so.conf.d/brotli.conf | ||
else | ||
echo /usr/local/brotli/lib | sudo tee /etc/ld.so.conf.d/brotli.conf | ||
fi | ||
sudo ldconfig || exit -1 | ||
ln -sf /usr/local/brotli/bin/brotli /usr/bin/brotli | ||
cd ../.. | ||
rm -rf brotli-${BORTLI_VERSION} | ||
rm -rf /v${BORTLI_VERSION}.zip | ||
yum remove -y cmake3 wget unzip gcc | ||
rm -rf /usr/bin/sudo | ||
yum clean all -y | ||
} | ||
install_brotli |