From 9ea25bfc2168ed9eb4d241245845d1c1bc4aca90 Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Thu, 30 Apr 2020 22:43:07 -0400 Subject: [PATCH] Add imagemagick 7 installation instructions --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ae38be66..40759f1f 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,20 @@ $ cd tup $ ./bootstrap.sh $ sudo cp tup /usr/local/bin/tup $ sudo cp tup.1 /usr/local/share/man - ``` You may have to build imagemagick from source to get version 7. +``` +$ sudo apt install build-essential pkg-config libltdl-dev libperl-dev libpng-dev +$ wget https://imagemagick.org/download/ImageMagick.tar.gz +$ tar xf ImageMagick.tar.gz +$ cd ImageMagick-* +$ ./configure --with-modules --enable-shared --with-perl +$ sudo make install +$ sudo ldconfig /usr/local/lib +``` + ### macOS Using [`brew`](https://brew.sh/) on a macOS: