vips: avoid webp opportunistic linkage

Closes #15897.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
ilovezfs 2017-07-22 02:05:47 -07:00
parent 313721a29e
commit a1a3a772d8

View file

@ -3,7 +3,7 @@ class Vips < Formula
homepage "https://github.com/jcupitt/libvips"
url "https://github.com/jcupitt/libvips/releases/download/v8.5.6/vips-8.5.6.tar.gz"
sha256 "19a77ab200eb0ddfcd8babab130fe43c7730880d1f1fdfbdd8def519af32c4b8"
revision 1
revision 2
bottle do
sha256 "e291227ecd67f990f277a5757530fef478954e3d1d6bee105d39001911dae321" => :sierra
@ -47,6 +47,8 @@ class Vips < Formula
args << "--with-magick" << "--with-magickpackage=GraphicsMagick"
end
args << "--without-libwebp" if build.without? "webp"
system "./configure", *args
system "make", "install"
end