# IT4Innovations 2020 # LK # https://github.com/easybuilders/easybuild-easyconfigs/issues/8893 easyblock = 'MesonNinja' name = 'Gdk-Pixbuf' version = '2.40.0' homepage = 'https://developer.gnome.org/gdk-pixbuf/stable/' description = """ The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it was distributed as part of GTK+ 2 but it was split off into a separate package in preparation for the change to GTK+ 3. """ toolchain = {'name': 'GCCcore', 'version': '9.3.0'} source_urls = [FTPGNOME_SOURCE] sources = [SOURCELOWER_TAR_XZ] checksums = [ '1582595099537ca8ff3b99c6804350b4c058bb8ad67411bbaae024ee7cead4e6', # gdk-pixbuf-2.40.0.tar.xz ] builddependencies = [ ('Meson', '0.53.2', '-Python-3.8.2'), ('Ninja', '1.10.0'), ('binutils', '2.34'), ('pkg-config', '0.29.2'), ('GObject-Introspection', '1.64.0', '-Python-3.8.2'), ] dependencies = [ ('GLib', '2.64.1'), ('libjpeg-turbo', '2.0.4'), ('libpng', '1.6.37'), ('LibTIFF', '4.1.0'), ('X11', '20200222'), ] configopts = "--buildtype=release --default-library=both " configopts += "-Dgio_sniffing=false -Dgir=true -Dman=false " sanity_check_paths = { 'files': ['lib/libgdk_pixbuf-%(version_major)s.0.a', 'lib/libgdk_pixbuf-%%(version_major)s.0.%s' % SHLIB_EXT], 'dirs': ['bin', 'include/gdk-pixbuf-%(version_major)s.0', 'lib/gdk-pixbuf-%(version_major)s.0', 'share'], } moduleclass = 'vis'