Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to point to the most recent downloads for dependencies. #1

Merged
merged 1 commit into from Aug 5, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions install_im.sh
Expand Up @@ -63,8 +63,8 @@ try_download http://www.ijg.org/files/jpegsrc.v8b.tar.gz
try_download http://download.osgeo.org/libtiff/tiff-3.9.4.tar.gz try_download http://download.osgeo.org/libtiff/tiff-3.9.4.tar.gz
try_download http://"$SF_MIRROR".dl.sourceforge.net/project/lcms/lcms/2.0/lcms2-2.0a.tar.gz try_download http://"$SF_MIRROR".dl.sourceforge.net/project/lcms/lcms/2.0/lcms2-2.0a.tar.gz
try_download http://ghostscript.googlecode.com/files/ghostscript-9.00.tar.gz try_download http://ghostscript.googlecode.com/files/ghostscript-9.00.tar.gz
try_download ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.4.7.tar.gz try_download ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.5.4.tar.gz
try_download ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.6.6-10.tar.gz try_download ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.7.1-1.tar.gz


# Decompress applications. # Decompress applications.
decompress_applications decompress_applications
Expand All @@ -73,7 +73,7 @@ echo "Starting..."


# LibPNG. # LibPNG.
# Official PNG reference library. # Official PNG reference library.
cd libpng-1.4.7 cd libpng-1.5.4
./configure --prefix=$CONFIGURE_PREFIX ./configure --prefix=$CONFIGURE_PREFIX
make make
sudo make install sudo make install
Expand Down Expand Up @@ -138,7 +138,7 @@ cd ..


# ImageMagick. # ImageMagick.
# Software suite to create, edit, and compose bitmap images. # Software suite to create, edit, and compose bitmap images.
cd ImageMagick-6.6.6-10 cd ImageMagick-6.7.1-1
export CPPFLAGS=-I$CONFIGURE_PREFIX/include export CPPFLAGS=-I$CONFIGURE_PREFIX/include
export LDFLAGS=-L$CONFIGURE_PREFIX/lib export LDFLAGS=-L$CONFIGURE_PREFIX/lib
./configure --prefix=$CONFIGURE_PREFIX $IMAGEMAGICK_ARGUMENTS --with-gs-font-dir=$CONFIGURE_GS_FONT/fonts ./configure --prefix=$CONFIGURE_PREFIX $IMAGEMAGICK_ARGUMENTS --with-gs-font-dir=$CONFIGURE_GS_FONT/fonts
Expand Down