diff options
Diffstat (limited to 'INSTALL.md')
| -rw-r--r-- | INSTALL.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..9784442 --- /dev/null +++ b/INSTALL.md | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | # GNU/Linux | ||
| 2 | |||
| 3 | ## Fedora | ||
| 4 | |||
| 5 | Thanks to [atenart](https://ack.tf/), there is a package available on | ||
| 6 | [Fedora's copr]( https://copr.fedorainfracloud.org/coprs/atenart/mat2/ ). | ||
| 7 | |||
| 8 | ## Debian | ||
| 9 | |||
| 10 | There is currently no package for Debian. If you want to help to make this | ||
| 11 | happen, there is an [issue](https://0xacab.org/jvoisin/mat2/issues/16) open. | ||
| 12 | |||
| 13 | But fear not, there is a way to install it *manually*: | ||
| 14 | |||
| 15 | ``` | ||
| 16 | # apt install python3-mutagen python3-gi-cairo python3-gi-cairo gir1.2-gdkpixbuf-2.0 libimage-exiftool-perl gir1.2-glib-2.0 gir1.2-poppler-0.18 | ||
| 17 | $ git clone https://0xacab.org/jvoisin/mat2.git | ||
| 18 | $ cd mat2 | ||
| 19 | $ ./mat2 | ||
| 20 | ``` | ||
| 21 | |||
| 22 | and if you want to install the über-fancy Nautilus extension: | ||
| 23 | |||
| 24 | ``` | ||
| 25 | # apt install python-gi-dev | ||
| 26 | $ git clone https://github.com/GNOME/nautilus-python | ||
| 27 | $ cd nautilus-python | ||
| 28 | $ PYTHON=/usr/bin/python3 ./autogen.sh | ||
| 29 | $ make | ||
| 30 | # make install | ||
| 31 | $ cp ./nautilus/nautilus_mat2.py ~/.local/share/nautilus-python/extensions/ | ||
| 32 | $ PYTHONPATH=/home/$USER/mat2 PYTHON=/usr/bin/python3 nautilus | ||
| 33 | ``` | ||
| 34 | |||
