summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md34
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
5Thanks 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
10There is currently no package for Debian. If you want to help to make this
11happen, there is an [issue](https://0xacab.org/jvoisin/mat2/issues/16) open.
12
13But 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
22and 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