Steps required to build and install ICE SSB on Debian Linux and its derivatives
-
Install the dependencies
apt install build-essential devscripts apt install python3 python3-gi python3-requests python3-bs4 python3-lxml apt install chromium-browser -
Clone the repository
mkdir -p ice-deb && cd ice-deb git clone https://github.com/peppermintos/ice.git -
Build and install the package
debuild --no-lintian -d -us -uc dpkg -i ../ice_*.deb -
Create a symlink from
/usr/bin/chromiumto/usr/bin/chromium-browser(otherwise ICE won't detect Chromium installation)ln -s /usr/bin/chromium /usr/bin/chromium-browser -
Clean things up
rm ../ice_* git clean -df