Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
maddox committed Nov 19, 2010
2 parents 51afe23 + 59b5422 commit 4d74b78
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
9 changes: 9 additions & 0 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ h2. Verified Platforms
* Mac OS X 10.5 Leopard (10.5.6)
* Mac OS X 10.6 Snow Leopard (10.6)

h2. Updates

The script has been updated with the latest packages, fixing some broken links in the process

# Freetype 2.4.3
# JPEG Source v8b
# Ghostscript 9.00
# ImageMagick 6.6.5-5

h2. Support

This script WILL get stale. As mirrors die and versions increase, the download commands in this script may not work anymore. If this happens to you, please fork the script and fix it. Let's keep this working forever!
Expand Down
26 changes: 13 additions & 13 deletions magick-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ function download() {
fi
}

download http://nongnu.askapache.com/freetype/freetype-2.3.9.tar.gz
download http://nongnu.askapache.com/freetype/freetype-2.4.3.tar.gz
download http://surfnet.dl.sourceforge.net/project/libpng/libpng-stable/1.2.39/libpng-1.2.39.tar.gz
download http://www.ijg.org/files/jpegsrc.v7.tar.gz
download http://www.ijg.org/files/jpegsrc.v8b.tar.gz
download http://www.sfr-fresh.com/unix/misc/tiff-3.9.4.tar.gz
download http://voxel.dl.sourceforge.net/project/wvware/libwmf/0.2.8.4/libwmf-0.2.8.4.tar.gz
download http://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz
download http://voxel.dl.sourceforge.net/project/ghostscript/GPL%20Ghostscript/8.70/ghostscript-8.70.tar.gz
download http://heanet.dl.sourceforge.net/project/ghostscript/GPL%20Ghostscript/9.00/ghostscript-9.00.tar.gz
download http://voxel.dl.sourceforge.net/project/gs-fonts/gs-fonts/8.11%20%28base%2035%2C%20GPL%29/ghostscript-fonts-std-8.11.tar.gz
download http://image_magick.veidrodis.com/image_magick/ImageMagick-6.6.4-0.tar.gz
download http://image_magick.veidrodis.com/image_magick/ImageMagick-6.6.5-5.tar.gz

tar xzvf freetype-2.3.9.tar.gz
cd freetype-2.3.9
tar xzvf freetype-2.4.3.tar.gz
cd freetype-2.4.3
./configure --prefix=/usr/local
make clean
make
Expand All @@ -38,9 +38,9 @@ sudo make install
cd ..


tar xzvf jpegsrc.v7.tar.gz
cd jpeg-7
ln -s -f `which glibtool` ./libtool
tar xzvf jpegsrc.v8b.tar.gz
cd jpeg-8b
ln -s `which glibtool` ./libtool
export MACOSX_DEPLOYMENT_TARGET=10.6
./configure --enable-shared --prefix=/usr/local
make clean
Expand Down Expand Up @@ -76,8 +76,8 @@ sudo make install
cd ..


tar zxvf ghostscript-8.70.tar.gz
cd ghostscript-8.70
tar zxvf ghostscript-9.00.tar.gz
cd ghostscript-9.00
./configure --prefix=/usr/local
make clean
make
Expand All @@ -90,8 +90,8 @@ sudo mkdir -p /usr/local/share/ghostscript/fonts
sudo mv -f fonts/* /usr/local/share/ghostscript/fonts


tar xzvf ImageMagick-6.6.4-0.tar.gz
cd ImageMagick-6.6.4-0
tar xzvf ImageMagick-6.6.5-5.tar.gz
cd ImageMagick-6.6.5-5
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
Expand Down

0 comments on commit 4d74b78

Please sign in to comment.