d5aab8e0a7
the vips-7.30.2 homebrew had previously has seen a number of useful bigfixes, especially for deepzoom creation, see: https://github.com/jcupitt/libvips/blob/7.30/ChangeLog Closes Homebrew/homebrew#16671. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
28 lines
825 B
Ruby
28 lines
825 B
Ruby
require 'formula'
|
|
|
|
class Vips < Formula
|
|
homepage 'http://www.vips.ecs.soton.ac.uk/'
|
|
url 'http://www.vips.ecs.soton.ac.uk/supported/7.30/vips-7.30.6.tar.gz'
|
|
sha1 'f13aa134e39e2f6c126e393ff3ee841632defcb4'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on :libpng
|
|
depends_on :fontconfig
|
|
depends_on 'gettext'
|
|
depends_on 'glib'
|
|
depends_on 'jpeg' => :optional
|
|
depends_on 'libtiff' => :optional
|
|
depends_on 'imagemagick' => :optional
|
|
depends_on 'fftw' => :optional
|
|
depends_on 'little-cms' => :optional
|
|
depends_on 'pango' => :optional
|
|
depends_on 'libexif' => :optional
|
|
depends_on 'liboil' => :optional
|
|
depends_on 'openexr' => :optional
|
|
depends_on 'cfitsio' => :optional
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|