diff --git a/docs/installation.rst b/docs/installation.rst
index f80c1dce..aa683c6a 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -297,20 +297,88 @@ compiled by hand.
To add JBIG2 encoding, see :ref:`jbig2`.
-ArchLinux (AUR)
----------------
+Arch Linux (AUR)
+----------------
.. image:: https://repology.org/badge/version-for-repo/aur/ocrmypdf.svg
:alt: ArchLinux
:target: https://repology.org/metapackage/ocrmypdf
-There is an `ArchLinux User Repository package for
-ocrmypdf `__. If you have any
-idea how to actually install the package, please feel free to contribute
-appropriate instructions, as this author is completely mystified by ArchLinux.
+There is an `Arch User Repository (AUR) package for OCRmyPDF
+`__.
-If you have any difficulties with installation, check the repository
-package page.
+Installing AUR packages as root is not allowed, so you must first `setup a
+non-root user
+`__ and
+`configure sudo `__.
+If you are using a VM image, such as `the official Vagrant image
+`__, this may already be
+completed for you.
+
+Next you should install the `base-devel package group
+`__. This includes the
+standard tooling needed to build packages, such as a compiler and binary tools.
+`As noted in the Arch Wiki
+`__, "packages belonging to
+this group are not required to be listed as build-time dependencies
+(makedepends) in PKGBUILD files".
+
+.. code-block:: bash
+
+ sudo pacman -S base-devel
+
+The OCRmyPDF package depends on `the python-pdfminer.six AUR package
+`__. Dependencies on
+AUR packages are not automatically resolved, so this package must be manually
+installed first.
+
+.. code-block:: bash
+
+ curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/python-pdfminer.six.tar.gz
+ tar xvzf python-pdfminer.six.tar.gz
+ cd python-pdfminer.six
+ makepkg -sri
+
+With that complete you can then repeat the same series of steps for the
+OCRmyPDF package.
+
+.. code-block:: bash
+
+ curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/ocrmypdf.tar.gz
+ tar xvzf ocrmypdf.tar.gz
+ cd ocrmypdf
+ makepkg -sri
+
+At this point you will have a working install of OCRmyPDF, but the Tesseract
+install won’t include any OCR language data. You can install `the
+tesseract-data package group
+`__ to add all supported
+languages, or use that package listing to identify the appropriate package for
+your desired language.
+
+.. code-block:: bash
+
+ sudo pacman -S tesseract-data-eng
+
+As an alternative to this manual procedure, consider using an `AUR helper
+`__. Such a tool will
+automatically fetch, build and install the AUR package, resolve dependencies
+(including dependencies on AUR packages), and ease the upgrade procedure.
+
+If you have any difficulties with installation, check the repository package
+page.
+
+.. note::
+
+ The OCRmyPDF AUR package currently omits the JBIG2 encoder. OCRmyPDF works
+ fine without it but will produce larger output files. The encoder is
+ available from `the jbig2enc-git AUR package
+ `__ and may be installed
+ using the same series of steps as for the installation of the pdfminer.six
+ and OCRmyPDF AUR packages. Alternatively, it may be built manually from
+ source following the instructions in `Installing the JBIG2 encoder
+ `__. If JBIG2 is installed, OCRmyPDF 7.0.0 and later will
+ automatically detect it.
Alpine Linux
------------