22 Oct, 2008

Instalar RMagick en MAC OS X Leopard

Posted by: leopoldomaestro In: MAC

En este tip voy a instalar RMagick bajo MAC OS X 10.5 (Leopard).

REQUERIMIENTOS PREVIOS:

Developer Tools

/usr/local en tu path

PASO 1:

Empezamos creando una carpeta donde colocar los ficheros fuente:

cd ~
mkdir src
cd src

PASO 2:

Si no tenemos Wget en el sistema, lo bajamos y lo compilamos, ya que a mi entender es una herramienta imprescindible en cualquier sistema UNIX.

WGET

curl -O http://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
tar -zxvf wget-latest.tar.gz
cd wget-1.11/
./configure --prefix=/usr/local
make
sudo make install
cd ..

PASO 3:

FREETYPE

wget http://download.savannah.gnu.org/releases/freetype/freetype-2.3.5.tar.gz
tar zxvf freetype-2.3.5.tar.gz
cd freetype-2.3.5
./configure --prefix=/usr/local
make
sudo make install
cd ..

LIBRERIA PNG

wget http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.25.tar.gz
tar -zxvf libpng-1.2.25.tar.gz
cd libpng-1.2.25
./configure --prefix=/usr/local
make
sudo make install

cd ..

LIBRERIA JPEG

wget ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
tar -zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
ln -s `which glibtool` ./libtool
export MACOSX_DEPLOYMENT_TARGET=10.5
./configure --enable-shared --prefix=/usr/local
make
sudo make install
cd ..

LIBRERIA TIFF

wget ftp://ftp.remotesensing.org/libtiff/tiff-3.8.2.tar.gz
tar -zxvf tiff-3.8.2.tar.gz
cd tiff-3.8.2
./configure --prefix=/usr/local
make
sudo make install
cd ..

FUENTES GHOSTSCRIPT

wget http://superb-east.dl.sourceforge.net/sourceforge/gs-fonts/ghostscript-fonts-std-8.11.tar.gz
tar -zxvf ghostscript-fonts-std-8.11.tar.gz
sudo mkdir /usr/local/share/ghostscript
sudo mv fonts/ /usr/local/share/ghostscript/fonts/

IMAGEMAGICK

wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz

tar zxvf ImageMagick.tar.gz

cd ImageMagick-6.3.9/

export CPPFLAGS=-I/usr/local/include

export LDFLAGS=-L/usr/local/lib

./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --with-gs-font-dir=/usr/local/share/ghostscript/fonts

make

sudo make install

cd ..

RMAGICK

sudo gem install rmagick

MINIMAGICK

sudo gem install mini_magick

LIMPIEZA

Si todo se completo satisfactoriamente, limpiamos el directorio con los sources (hay que ser ordenados).

cd ~ rm -Rfv ./src

2 Respuestas en "Instalar RMagick en MAC OS X Leopard"

1 | Joan Marc Carbo Arnau

diciembre 5th, 2008 at 10:14 pm

Avatar

Muchas gracias, ha funcionado casi todo a la primera.

2 | leopoldomaestro

diciembre 5th, 2008 at 10:17 pm

Avatar

De nada :).

A ti por molestarte en darlas ;). Espero que sea util a mucha gente.

Haz un comentario

Categorias

Publicidad

Sobre el blog

Blog personal de Leopoldo Maestro en el que se cubren noticias, curiosidades y experiencias relacionadas con la Administración de Sistemas, Networking, Negocios, Tecnología...

Publicidad