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

Fix broken link for libpng #11

Closed
wants to merge 2 commits into from
Closed
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
12 changes: 6 additions & 6 deletions magick-installer.sh
Expand Up @@ -12,14 +12,14 @@ function download() {
}

download http://nongnu.askapache.com/freetype/freetype-2.4.3.tar.gz
download ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.4.4.tar.gz
download ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.4.5.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://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.5-5.tar.gz
download ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-6.6.6-4.tar.gz

tar xzvf freetype-2.4.3.tar.gz
cd freetype-2.4.3
Expand All @@ -29,8 +29,8 @@ make
sudo make install
cd ..

tar xzvf libpng-1.4.4.tar.gz
cd libpng-1.4.4
tar xzvf libpng-1.4.5.tar.gz
cd libpng-1.4.5
./configure --prefix=/usr/local
make clean
make
Expand Down Expand Up @@ -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.5-5.tar.gz
cd ImageMagick-6.6.5-5
tar xzvf ImageMagick-6.6.6-4.tar.gz
cd ImageMagick-6.6.6-4
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 --disable-openmp
Expand Down