118 lines
3.6 KiB
Ruby
118 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-44.tar.xz"
|
|
sha256 "c937c29c31ddd37ad441c13ce45e569ec911d3bb427dfaad6aa8450e5eef09a6"
|
|
license "ImageMagick"
|
|
revision 1
|
|
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: "95b0648c58b827d9d9b4480f5cf58dcd70ca3c6e8945c197681abc9ae379cff7"
|
|
sha256 arm64_big_sur: "87c4079030b4732fd919b96d7b782944ac4b2a2551110d141d53232d10c78489"
|
|
sha256 monterey: "786f467c6efec4ae9c26311356f5fcc34ee260eeb52791eec76c85f3ca05ee6d"
|
|
sha256 big_sur: "2cb1cbdf7cb671c1338bba083953a00f1aca30de97f2eb7c7af076c7cdbbaab6"
|
|
sha256 catalina: "b5c9ea0399df39214ec8f0657528f70abff68f32f912ba0b96fdbe40fa4ae700"
|
|
sha256 x86_64_linux: "5e130dbdcdf9ca0f0ac5c1b575dff3d0c200e79facf3ee7dbe956ef06ed268c0"
|
|
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 "gcc"
|
|
depends_on "libx11"
|
|
end
|
|
|
|
skip_clean :la
|
|
|
|
fails_with gcc: "5" # ghostscript is built with GCC
|
|
|
|
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
|