114 lines
3.6 KiB
Ruby
114 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-57.tar.xz"
|
|
sha256 "9c3bc3de37376b90a643b9437435cb477db68596b26a778a584020915196870b"
|
|
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: "396365a636b89ab310360ae95faa704463b1e7d28fbc85a20821c928633deddc"
|
|
sha256 arm64_monterey: "e00ff98de8a306266d84fd1f2d54f9db5c449d589c5cfdf027a0ca4e11c86d3c"
|
|
sha256 arm64_big_sur: "8c9ed46a89e089d6432b4c445066eeb511439195622b0facd8c60e001e8df72b"
|
|
sha256 ventura: "332118594aa3b9130329222969b6543f9ee89ba8586a89ebb4c0e2faf37858ec"
|
|
sha256 monterey: "f162a3c08c813c1773f99f5646019fcc00a8344961f73246da47035e8d78c931"
|
|
sha256 big_sur: "0ab97b4a529febe80a3e49e92b499d4edb2323094c437f9327c42e8c6bb5e783"
|
|
sha256 x86_64_linux: "f13b68b95f20a5d22aec09707aec649d03c57ce0d8ea295a8109a4d5266f697a"
|
|
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"
|
|
# versioned stuff in main tree is pointless for us
|
|
inreplace "configure", "${PACKAGE_NAME}-${PACKAGE_BASE_VERSION}", "${PACKAGE_NAME}"
|
|
|
|
args = [
|
|
"--enable-osx-universal-binary=no",
|
|
"--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-djvu",
|
|
"--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
|
|
|
|
system "./configure", *std_configure_args, *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
|