summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorjvoisin2018-08-08 20:45:09 +0200
committerjvoisin2018-08-08 20:45:09 +0200
commit6e2e411a2a73972c6619e95783fa3f0a1caf95c5 (patch)
tree882881c022a62bfa21294c0cd512436533691f1e /INSTALL.md
parent2ce1dc793e6c15b4a40bcbb9a70c415560816b8e (diff)
Add an INSTALL.md file
Diffstat (limited to 'INSTALL.md')
-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