From 8540015e2ecf1d3e7ebfe1e5b1c5c3ddfa7b2bdc Mon Sep 17 00:00:00 2001 From: Dmitry Kann Date: Thu, 24 Dec 2020 16:26:59 +0100 Subject: [PATCH] docs: mention dependencies required for tarball (resolves #98) --- doc/install.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/install.md b/doc/install.md index a21846a..7b1723b 100644 --- a/doc/install.md +++ b/doc/install.md @@ -26,7 +26,11 @@ If you don't want or can't install from the PPA, you can download and install th In order to install the application from the source tarball: -1. Download the tarball (`indicator-sound-switcher-*.tar.gz`) -2. Decompress the archive: `tar xf indicator-sound-switcher-*.tar.gz` -3. `cd` to the `indicator-sound-switcher-*` dir -4. Run `sudo python3 setup.py install` +1. Make sure the required dependencies are installed (you can replace `gir1.2-ayatanaappindicator3-0.1` with `gir1.2-appindicator3-0.1` if the former isn't available in your distro): +```bash +sudo apt install python3-gi gir1.2-gtk-3.0 gir1.2-ayatanaappindicator3-0.1 gir1.2-keybinder-3.0 +``` +2. Download the tarball (`indicator-sound-switcher-*.tar.gz`) +3. Decompress the archive: `tar xf indicator-sound-switcher-*.tar.gz` +4. `cd` to the `indicator-sound-switcher-*` dir +5. Run `sudo python3 setup.py install`