homebrew-core/Formula/imagemagick.rb

114 lines
3.5 KiB
Ruby

class Imagemagick < Formula
desc "Tools and libraries to manipulate images in many formats"
homepage "https://imagemagick.org/index.php"
url "https://imagemagick.org/archive/releases/ImageMagick-7.1.0-48.tar.xz"
sha256 "eb2d4dc3cc9fd3d4686aa64562177ca5067b1d40bcb6ec75fa1003eaf8c37f4e"
license "ImageMagick"
head "https://github.com/ImageMagick/ImageMagick.git", branch: "main"
livecheck do
url "https://imagemagick.org/archive/"
regex(/href=.*?ImageMagick[._-]v?(\d+(?:\.\d+)+-\d+)\.t/i)
end
bottle do
sha256 arm64_monterey: "d576454f8a68f60d0affced886046823fdfab8b918b73f37da4468fef3373b23"
sha256 arm64_big_sur: "9e1a3616691d9fd73f12011107226b33f439412cb12de683f1eee0a5a5b35162"
sha256 monterey: "72ff36bacbf09fba817600a88e7e536c9b94cef8e0a609c73407845be721e9bf"
sha256 big_sur: "35e691a7b3379a2beab0fbc707b19fc0af7dfc6a50c9466f015af065b5ac6a87"
sha256 catalina: "96d80aa43e1adcf1d686d0ce040831999bd83ad7b563f87c0555cd3fb976d696"
sha256 x86_64_linux: "2d8c80ef8f69ff878ee538e0236b04e6ba2e4b40f74363c99dd4cb2bd8ba3ffa"
end
depends_on "pkg-config" => :build
depends_on "freetype"
depends_on "ghostscript"
depends_on "jpeg-turbo"
depends_on "libheif"
depends_on "liblqr"
depends_on "libpng"
depends_on "libraw"
depends_on "libtiff"
depends_on "libtool"
depends_on "little-cms2"
depends_on "openexr"
depends_on "openjpeg"
depends_on "webp"
depends_on "xz"
uses_from_macos "bzip2"
uses_from_macos "libxml2"
uses_from_macos "zlib"
on_macos do
depends_on "libomp"
end
on_linux do
depends_on "libx11"
end
skip_clean :la
def install
# Avoid references to shim
inreplace Dir["**/*-config.in"], "@PKG_CONFIG@", Formula["pkg-config"].opt_bin/"pkg-config"
args = [
"--enable-osx-universal-binary=no",
"--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--disable-opencl",
"--enable-shared",
"--enable-static",
"--with-freetype=yes",
"--with-gvc=no",
"--with-modules",
"--with-openjp2",
"--with-openexr",
"--with-webp=yes",
"--with-heic=yes",
"--with-raw=yes",
"--with-gslib",
"--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts",
"--with-lqr",
"--without-fftw",
"--without-pango",
"--without-wmf",
"--enable-openmp",
]
if OS.mac?
args += [
"--without-x",
# Work around "checking for clang option to support OpenMP... unsupported"
"ac_cv_prog_c_openmp=-Xpreprocessor -fopenmp",
"ac_cv_prog_cxx_openmp=-Xpreprocessor -fopenmp",
"LDFLAGS=-lomp -lz",
]
end
# versioned stuff in main tree is pointless for us
inreplace "configure", "${PACKAGE_NAME}-${PACKAGE_BASE_VERSION}", "${PACKAGE_NAME}"
system "./configure", *args
system "make", "install"
end
test do
assert_match "PNG", shell_output("#{bin}/identify #{test_fixtures("test.png")}")
# Check support for recommended features and delegates.
features = shell_output("#{bin}/magick -version")
%w[Modules freetype heic jpeg png raw tiff].each do |feature|
assert_match feature, features
end
# Check support for a few specific image formats, mostly to ensure LibRaw linked correctly.
formats = shell_output("#{bin}/magick -list format")
["AVIF HEIC rw+", "ARW DNG r--", "DNG DNG r--"].each do |format|
assert_match format, formats
end
assert_match "Helvetica", shell_output("#{bin}/magick -list font")
end
end