104 lines
3.6 KiB
Ruby
104 lines
3.6 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.36/gdk-pixbuf-2.36.0.tar.xz"
|
|
sha256 "85ab52ce9f2c26327141b3dcf21cca3da6a3f8de84b95fa1e727d8871a23245c"
|
|
revision 2
|
|
|
|
bottle do
|
|
sha256 "8e48081047bc6a572a1ce04ca52d1cbb73091ee300961ffaf84d9fb2d0817eb0" => :sierra
|
|
sha256 "df2edeed86a88e0d57730a0fb7a045c62201af2d40ac538d6568f8f20aa34789" => :el_capitan
|
|
sha256 "e15e0dcd787c220f32c3b049953439a26dc93207c5bb734c9421c276d67fc6f5" => :yosemite
|
|
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"
|
|
depends_on "shared-mime-info"
|
|
|
|
# 'loaders.cache' must be writable by other packages
|
|
skip_clean "lib/gdk-pixbuf-2.0"
|
|
|
|
# gdk-pixbuf has an internal version number separate from the overall
|
|
# version number that specifies the location of its module and cache
|
|
# files, this will need to be updated if that internal version number
|
|
# is ever changed (as evidenced by the location no longer existing)
|
|
def gdk_so_ver
|
|
"2.0"
|
|
end
|
|
|
|
def gdk_module_ver
|
|
"2.10.0"
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
ENV.append_to_cflags "-DGDK_PIXBUF_LIBDIR=\\\"#{HOMEBREW_PREFIX}/lib\\\""
|
|
args = %W[
|
|
--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-#{gdk_so_ver}.pc" do |s|
|
|
libv = s.get_make_var "gdk_pixbuf_binary_version"
|
|
s.change_make_var! "gdk_pixbuf_binarydir",
|
|
HOMEBREW_PREFIX/"lib/gdk-pixbuf-#{gdk_so_ver}"/libv
|
|
end
|
|
|
|
# Remove the cache. We will regenerate it in post_install
|
|
(lib/"gdk-pixbuf-#{gdk_so_ver}/#{gdk_module_ver}/loaders.cache").unlink
|
|
end
|
|
|
|
# Where we want to store the loaders.cache file, which should be in a
|
|
# Keg-specific lib directory, not in the global Homebrew lib directory
|
|
def module_file
|
|
"#{lib}/gdk-pixbuf-#{gdk_so_ver}/#{gdk_module_ver}/loaders.cache"
|
|
end
|
|
|
|
# The directory that loaders.cache gets linked into, also has the "loaders"
|
|
# directory that is scanned by gdk-pixbuf-query-loaders in the first place
|
|
def module_dir
|
|
"#{HOMEBREW_PREFIX}/lib/gdk-pixbuf-#{gdk_so_ver}/#{gdk_module_ver}"
|
|
end
|
|
|
|
def post_install
|
|
ENV["GDK_PIXBUF_MODULE_FILE"] = module_file
|
|
ENV["GDK_PIXBUF_MODULEDIR"] = "#{module_dir}/loaders"
|
|
system "#{bin}/gdk-pixbuf-query-loaders", "--update-cache"
|
|
# Link newly created module_file into global gdk-pixbuf directory
|
|
ln_sf module_file, module_dir
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Programs that require this module need to set the environment variable
|
|
export GDK_PIXBUF_MODULE_FILE="#{module_file}"
|
|
export GDK_PIXBUF_MODULEDIR="#{module_dir}/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") || HOMEBREW_PREFIX.to_s != "/usr/local"
|
|
|
|
test do
|
|
system bin/"gdk-pixbuf-csource", test_fixtures("test.png")
|
|
end
|
|
end
|