78 lines
2.8 KiB
Ruby
78 lines
2.8 KiB
Ruby
class GdkPixbuf < Formula
|
|
desc "Toolkit for image loading and pixel buffer manipulation"
|
|
homepage "http://gtk.org"
|
|
url "https://download.gnome.org/sources/gdk-pixbuf/2.32/gdk-pixbuf-2.32.3.tar.xz"
|
|
sha256 "2b6771f1ac72f687a8971e59810b8dc658e65e7d3086bd2e676e618fd541d031"
|
|
|
|
bottle do
|
|
revision 1
|
|
sha256 "ed2b262389586d964b5054efb91caa0627d53706bc0b18a3337b83badcc45c74" => :el_capitan
|
|
sha256 "d0fbcabe793d595d424f11e078f621291f3a9556da793da2efd2f7e1e9ea543f" => :yosemite
|
|
sha256 "b48036231be2a0212a8e4a591ac6c355652d77391fc15b9a3dfd9c9857cf4a10" => :mavericks
|
|
end
|
|
|
|
option :universal
|
|
option "with-relocations", "Build with relocation support for bundles"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "glib"
|
|
depends_on "jpeg"
|
|
depends_on "libtiff"
|
|
depends_on "libpng"
|
|
depends_on "gobject-introspection"
|
|
|
|
# 'loaders.cache' must be writable by other packages
|
|
skip_clean "lib/gdk-pixbuf-2.0"
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
ENV.append_to_cflags "-DGDK_PIXBUF_LIBDIR=\\\"#{HOMEBREW_PREFIX}/lib\\\""
|
|
args = ["--disable-dependency-tracking",
|
|
"--disable-maintainer-mode",
|
|
"--enable-debug=no",
|
|
"--prefix=#{prefix}",
|
|
"--enable-introspection=yes",
|
|
"--disable-Bsymbolic",
|
|
"--enable-static",
|
|
"--without-gdiplus",]
|
|
|
|
args << "--enable-relocations" if build.with?("relocations")
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
# Other packages should use the top-level modules directory
|
|
# rather than dumping their files into the gdk-pixbuf keg.
|
|
inreplace lib/"pkgconfig/gdk-pixbuf-2.0.pc" do |s|
|
|
libv = s.get_make_var "gdk_pixbuf_binary_version"
|
|
s.change_make_var! "gdk_pixbuf_binarydir",
|
|
HOMEBREW_PREFIX/"lib/gdk-pixbuf-2.0"/libv
|
|
end
|
|
|
|
# Remove the cache. We will regenerate it in post_install
|
|
(lib/"gdk-pixbuf-2.0/2.10.0/loaders.cache").unlink
|
|
end
|
|
|
|
def post_install
|
|
# Change the version directory below with any future update
|
|
if build.with?("relocations")
|
|
ENV["GDK_PIXBUF_MODULE_FILE"]="#{lib}/gdk-pixbuf-2.0/2.10.0/loaders.cache"
|
|
ENV["GDK_PIXBUF_MODULEDIR"]="#{HOMEBREW_PREFIX}/lib/gdk-pixbuf-2.0/2.10.0/loaders"
|
|
end
|
|
system "#{bin}/gdk-pixbuf-query-loaders", "--update-cache"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Programs that require this module need to set the environment variable
|
|
export GDK_PIXBUF_MODULE_FILE="#{lib}/gdk-pixbuf-2.0/2.10.0/loaders.cache"
|
|
export GDK_PIXBUF_MODULEDIR="#{HOMEBREW_PREFIX}/lib/gdk-pixbuf-2.0/2.10.0/loaders"
|
|
If you need to manually update the query loader cache, set these variables then run
|
|
#{bin}/gdk-pixbuf-query-loaders --update-cache
|
|
EOS
|
|
end if build.with?("relocations")
|
|
|
|
test do
|
|
system bin/"gdk-pixbuf-csource", test_fixtures("test.png")
|
|
end
|
|
end
|