homebrew-core/Formula/imagemagick.rb

115 lines
3.6 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-55.tar.xz"
sha256 "ee06d385bb5c92a57aefb1c64abe5107728b8f8448195843e6d8cf142a5b3191"
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_ventura: "6bf5d48b2c7ff9bee03e432bbe6eff9d8b0e12364e0936a97db445fa6a176c60"
sha256 arm64_monterey: "01571a033aaf10e38458c26160d0ddd51dc642e657b9b96e9783539b381706e5"
sha256 arm64_big_sur: "374a643cd50f435a57d22428bc73dbe5a4725d743df777008b6dae773de0514b"
sha256 ventura: "42573bae3687bbecffaedcda843a1653b63d15760960d63c6b2a13a08b6534cf"
sha256 monterey: "d886aedda4cb79363cb01da7dcd57e858ab6db0e683bd49f9d42bb51e01f7715"
sha256 big_sur: "a8f670ae36cc1dd1501357ea7b23e607f1203c5c3590457fc9e2a30f6fce7f49"
sha256 x86_64_linux: "95f7e20891ac26df6bdad65e33b508ab60883d4ba71b4f1e87dfcdcd6df55a71"
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