-
-
Save joelanman/798c1a397cc66670f940d6e5e56fd993 to your computer and use it in GitHub Desktop.
Installs ImageMagick --with-librsvg on Amazon Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/usr/lib/pkgconfig | |
export PATH=/usr/bin:$PATH | |
export LDFLAGS=-L/usr/lib64:/usr/lib | |
export LD_LIBRARY_PATH=/usr/lib64:/usr/lib | |
export CPPFLAGS=-I/usr/include | |
sudo yum-config-manager --enable epel | |
#sudo yum update -y | |
sudo yum install -y gcc gcc-c++ glib2-devel.x86_64 libxml2-devel.x86_64 libpng-devel.x86_64 \ | |
libjpeg-turbo-devel.x86_64 gobject-introspection.x86_64 gobject-introspection-devel.x86_64 | |
wget http://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.12.tar.xz | |
tar xvfJ libcroco-0.6.12.tar.xz | |
cd libcroco-0.6.12 | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.8.1.tar.xz | |
tar xvfJ gettext-0.19.8.1.tar.xz | |
cd gettext-0.19.8.1 | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://ftp.gnome.org/pub/gnome/sources/glib/2.54/glib-2.54.2.tar.xz | |
tar xvfJ glib-2.54.2.tar.xz | |
cd glib-2.54.2 | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/2.28/gdk-pixbuf-2.28.2.tar.xz | |
tar xvfJ gdk-pixbuf-2.28.2.tar.xz | |
cd gdk-pixbuf-2.28.2 | |
./configure --prefix=/usr --without-libtiff | |
make | |
sudo make install | |
cd .. | |
sudo yum install -y pixman-devel.x86_64 harfbuzz-devel.x86_64 freetype-devel.x86_64 | |
wget wget http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.10.91.tar.gz | |
tar xvf fontconfig-2.10.91.tar.gz | |
cd fontconfig-2.10.91 | |
./configure --prefix=/usr --enable-libxml2 | |
make | |
sudo make install | |
cd .. | |
wget http://cairographics.org/releases/cairo-1.14.10.tar.xz | |
tar xvfJ cairo-1.14.10.tar.xz | |
cd cairo-1.14.10 | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://ftp.gnome.org/pub/GNOME/sources/pango/1.34/pango-1.34.1.tar.xz | |
tar xvfJ pango-1.34.1.tar.xz | |
cd pango-1.34.1 | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.40/librsvg-2.40.6.tar.xz | |
tar xvfJ librsvg-2.40.6.tar.xz | |
cd librsvg-2.40.6 | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://www.imagemagick.org/download/delegates/jpegsrc.v9b.tar.gz | |
tar -xzvf jpegsrc.v9b.tar.gz | |
cd jpeg-9b | |
./configure --prefix=/usr | |
make | |
sudo make install | |
cd .. | |
wget http://www.imagemagick.org/download/ImageMagick.tar.gz | |
tar xvf ImageMagick.tar.gz | |
cd ImageMagick-7.0.7-11 | |
./configure --with-rsvg --disable-installed --disable-shared --enable-delegate-build --prefix=/ImageMagick --disable-dependency-tracking --with-x=no --without-perl --with-tiff=no --with-magick-plus-plus=no --with-bzlib=no --with-mpeg=no | |
make | |
sudo make install | |
cd .. | |
sudo ldconfig /usr/lib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment