require 'brewkit' # some credit to http://github.com/maddox/magick-installer class Imagemagick :optional depends_on 'libtiff' => :optional depends_on 'little-cms' => :optional depends_on 'ghostscript' => :recommended def install ENV.libpng ENV.deparallelize # TODO eventually these will be external optional dependencies # but for now I am lazy # versioned stuff in main tree is pointless for us inreplace 'configure', '${PACKAGE_NAME}-${PACKAGE_VERSION}', '${PACKAGE_NAME}' system "./configure", "--disable-dependency-tracking", "--without-maximum-compile-warnings", "--prefix=#{prefix}", "--disable-osx-universal-binary", "--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts", "--without-perl" # I couldn't make this compile system "make install" # We already copy these into the keg root (share+'NEWS.txt').unlink (share+'LICENSE').unlink (share+'ChangeLog').unlink end def caveats "I'm not a heavy user of ImageMagick, so please check everything is installed." end end