imagemagick@6: disable DjVu support
Closes #120091. Signed-off-by: Patrick Linnane <patrick@linnane.io> Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>master
parent
0339206d7b
commit
f77125eb20
|
@ -43,11 +43,11 @@ class ImagemagickAT6 < Formula
|
||||||
def install
|
def install
|
||||||
# Avoid references to shim
|
# Avoid references to shim
|
||||||
inreplace Dir["**/*-config.in"], "@PKG_CONFIG@", Formula["pkg-config"].opt_bin/"pkg-config"
|
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 = %W[
|
args = %W[
|
||||||
--enable-osx-universal-binary=no
|
--enable-osx-universal-binary=no
|
||||||
--prefix=#{prefix}
|
|
||||||
--disable-dependency-tracking
|
|
||||||
--disable-silent-rules
|
--disable-silent-rules
|
||||||
--disable-opencl
|
--disable-opencl
|
||||||
--disable-openmp
|
--disable-openmp
|
||||||
|
@ -59,15 +59,14 @@ class ImagemagickAT6 < Formula
|
||||||
--with-openjp2
|
--with-openjp2
|
||||||
--with-gslib
|
--with-gslib
|
||||||
--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts
|
--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts
|
||||||
|
--without-djvu
|
||||||
--without-fftw
|
--without-fftw
|
||||||
--without-pango
|
--without-pango
|
||||||
--without-x
|
--without-x
|
||||||
--without-wmf
|
--without-wmf
|
||||||
]
|
]
|
||||||
|
|
||||||
# versioned stuff in main tree is pointless for us
|
system "./configure", *std_configure_args, *args
|
||||||
inreplace "configure", "${PACKAGE_NAME}-${PACKAGE_BASE_VERSION}", "${PACKAGE_NAME}"
|
|
||||||
system "./configure", *args
|
|
||||||
system "make", "install"
|
system "make", "install"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue