Build from source but keep existing rpm installation

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
stroker
Posts: 16
Joined: 2008-04-07T11:24:55-07:00

Build from source but keep existing rpm installation

Post by stroker »

I have a old linux system running Imagemagick 6.2.5 installed by using a prm package. For example convert has the following path /usr/bin/convert.
Now i want to upgrade to newest version by building from source but I want to keep the existing 6.2.5 installation as well (for the time I develop my scripts to the new version).

It is very important that I don't break the existing installation, how do I install to a different path?

Is this the right way?

Code: Select all

./configure --prefix=/usr/imagemagick-new
After the installation am i able to do the following?
/usr/imagemagick-new/bin/convert {command} (for new version)
/usr/bin/convert {command} (for oldversion)
Post Reply