Remove unnecessary dependencies

This commit is contained in:
Xiaonan Shen 2020-04-14 22:31:20 -07:00
parent b9d6dd4f8c
commit 566735cf74
No known key found for this signature in database
GPG key ID: 211BF560D12417F5
5 changed files with 57 additions and 17 deletions

15
install.sh Normal file
View file

@ -0,0 +1,15 @@
#!/bin/bash
set -x
# Install dependents
# libgl1-mesa-glx is installed since the bridge requires libgl and we removed the qt dependencies
apt-get update
apt-get install -y --no-install-recommends socat pass libgl1-mesa-glx
# Install protonmail bridge
apt-get install -y --no-install-recommends /protonmail/protonmail.deb
# Cleanup
rm -rf /var/lib/apt/lists/*
rm /protonmail/protonmail.deb