homebrew-core/Formula/imagemagick.rb
Max Howell c76fcf59f4 Derive GraphicsMagick from ImageMagick
Ruby is cool init?
2009-11-07 18:22:36 +00:00

59 lines
1.7 KiB
Ruby

require 'formula'
# some credit to http://github.com/maddox/magick-installer
# NOTE please be aware that the GraphicsMagick formula derives this formula
class Imagemagick <Formula
@url='http://image_magick.veidrodis.com/image_magick/ImageMagick-6.5.6-5.tar.gz'
@md5='668919a5a7912fb6778975bc55893004'
@homepage='http://www.imagemagick.org'
depends_on 'jpeg'
depends_on 'libwmf' => :optional
depends_on 'libtiff' => :optional
depends_on 'little-cms' => :optional
depends_on 'jasper' => :optional
depends_on 'ghostscript' => :recommended
def skip_clean? path
path.extname == '.la'
end
def fix_configure
# versioned stuff in main tree is pointless for us
inreplace 'configure', '${PACKAGE_NAME}-${PACKAGE_VERSION}', '${PACKAGE_NAME}'
end
def configure_args
["--prefix=#{prefix}",
"--disable-dependency-tracking",
"--enable-shared",
"--disable-static",
"--with-modules",
"--without-magick-plus-plus"]
end
def install
ENV.libpng
ENV.deparallelize
ENV.O3 # takes forever otherwise
fix_configure
system "./configure", "--without-maximum-compile-warnings",
"--disable-osx-universal-binary",
"--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts",
"--without-perl", # I couldn't make this compile
*configure_args
system "make install"
# We already copy these into the keg root
(share+'ImageMagick'+'NEWS.txt').unlink
(share+'ImageMagick'+'LICENSE').unlink
(share+'ImageMagick'+'ChangeLog').unlink
end
def caveats
"If there is something missing that you need with this formula, please create an issue at #{HOMEBREW_WWW}"
end
end