homebrew-core/Formula/vips.rb
2018-03-24 09:22:20 -07:00

65 lines
1.9 KiB
Ruby

class Vips < Formula
desc "Image processing library"
homepage "https://github.com/jcupitt/libvips"
url "https://github.com/jcupitt/libvips/releases/download/v8.6.3/vips-8.6.3.tar.gz"
sha256 "f85adbb9f5f0f66b34a40fd2d2e60d52f6e992831f54af706db446f582e10992"
revision 3
bottle do
sha256 "3071841fce806097f079ec2e21680bfa344fca884b849be6df293043d91a002e" => :high_sierra
sha256 "486078437ada13c6c1630d93e936757da062a619c05ac8b92aff930d132a8d9b" => :sierra
sha256 "51d8d142d28690d3d97b965cb323fefc0f6a82ab572a1668ea3ea84fb5507059" => :el_capitan
end
depends_on "pkg-config" => :build
depends_on "fontconfig"
depends_on "gettext"
depends_on "giflib"
depends_on "glib"
depends_on "gobject-introspection"
depends_on "jpeg"
depends_on "libexif"
depends_on "libgsf"
depends_on "libpng"
depends_on "librsvg"
depends_on "libtiff"
depends_on "little-cms2"
depends_on "orc"
depends_on "pango"
depends_on "pygobject3"
depends_on "webp"
depends_on "fftw" => :recommended
depends_on "graphicsmagick" => :recommended
depends_on "poppler" => :recommended
depends_on "imagemagick" => :optional
depends_on "openexr" => :optional
depends_on "openslide" => :optional
if build.with?("graphicsmagick") && build.with?("imagemagick")
odie "vips: --with-imagemagick requires --without-graphicsmagick"
end
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--enable-pyvips8
PYTHON=#{Formula["python"].opt_bin}/python3
]
if build.with? "graphicsmagick"
args << "--with-magick" << "--with-magickpackage=GraphicsMagick"
elsif build.with? "imagemagick"
args << "--with-magick"
end
system "./configure", *args
system "make", "install"
end
test do
system "#{bin}/vips", "-l"
cmd = "#{bin}/vipsheader -f width #{test_fixtures("test.png")}"
assert_equal "8", shell_output(cmd).chomp
end
end