diff options
| author | Jamie van Dyke | 2009-09-09 10:40:35 +0100 |
|---|---|---|
| committer | Max Howell | 2009-09-14 20:33:46 +0100 |
| commit | 64696d3201a5fd7b06c83734db27e58a6904c65e (patch) | |
| tree | 33c383e767583e3ffba9c10e2097429e2da93723 /Library/Formula | |
| parent | 901d6e4c135e013525a8a2228c7bd8e991fd4218 (diff) | |
| download | homebrew-64696d3201a5fd7b06c83734db27e58a6904c65e.tar.bz2 | |
Updated imagemagick and made it work
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/imagemagick.rb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Library/Formula/imagemagick.rb b/Library/Formula/imagemagick.rb index 5db518006..8cbf2859f 100644 --- a/Library/Formula/imagemagick.rb +++ b/Library/Formula/imagemagick.rb @@ -2,7 +2,7 @@ require 'brewkit' # some credit to http://github.com/maddox/magick-installer -class LibTIFF <Formula +class Libtiff <Formula @url='ftp://ftp.remotesensing.org/libtiff/tiff-3.8.2.tar.gz' @homepage='http://www.libtiff.org/' @md5='fbb6f446ea4ed18955e2714934e5b698' @@ -33,8 +33,8 @@ class GhostscriptFonts <Formula end class Imagemagick <Formula - @url='ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.5.5-4.tar.bz2' - @md5='8cb7471a50428e4892ee46aa404e54c2' + @url='ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.5.5-7.tar.bz2' + @md5='fa6530a56278b0e9b7babf83cdcee82c' @homepage='http://www.imagemagick.org' def deps @@ -47,7 +47,7 @@ class Imagemagick <Formula # TODO eventually these will be external optional dependencies # but for now I am lazy - LibTIFF.new.brew do + Libtiff.new.brew do system "./configure", "--prefix=#{prefix}", "--disable-debug" system "make install" end @@ -78,7 +78,11 @@ class Imagemagick <Formula # versioned stuff in main tree is pointless for us inreplace 'configure', '${PACKAGE_NAME}-${PACKAGE_VERSION}', '${PACKAGE_NAME}' - system "./configure", "--disable-dependency-tracking", + system "./configure", "--disable-static", + "--with-modules", + "--without-magick-plus-plus", + "--disable-dependency-tracking", + "--disable-shared", "--without-maximum-compile-warnings", "--prefix=#{prefix}", "--disable-osx-universal-binary", |
