From 6e2e411a2a73972c6619e95783fa3f0a1caf95c5 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 8 Aug 2018 20:45:09 +0200 Subject: [PATCH] Add an INSTALL.md file --- INSTALL.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 INSTALL.md diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..9784442 --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,34 @@ +# GNU/Linux + +## Fedora + +Thanks to [atenart](https://ack.tf/), there is a package available on +[Fedora's copr]( https://copr.fedorainfracloud.org/coprs/atenart/mat2/ ). + +## Debian + +There is currently no package for Debian. If you want to help to make this +happen, there is an [issue](https://0xacab.org/jvoisin/mat2/issues/16) open. + +But fear not, there is a way to install it *manually*: + +``` +# 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 +$ git clone https://0xacab.org/jvoisin/mat2.git +$ cd mat2 +$ ./mat2 +``` + +and if you want to install the über-fancy Nautilus extension: + +``` +# apt install python-gi-dev +$ git clone https://github.com/GNOME/nautilus-python +$ cd nautilus-python +$ PYTHON=/usr/bin/python3 ./autogen.sh +$ make +# make install +$ cp ./nautilus/nautilus_mat2.py ~/.local/share/nautilus-python/extensions/ +$ PYTHONPATH=/home/$USER/mat2 PYTHON=/usr/bin/python3 nautilus +``` +