-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21721 from stefan-wolfsheimer/GTK3-3.24.42
{tools,vis}[GCCcore/13.3.0] GTK3-3.24.42-GCCcore-13.3.0.eb
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
easybuild/easyconfigs/g/GTK3/GTK3-3.24.42-GCCcore-13.3.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
easyblock = 'Bundle' | ||
|
||
name = 'GTK3' | ||
version = '3.24.42' | ||
|
||
homepage = 'https://developer.gnome.org/gtk3/stable/' | ||
description = """GTK+ is the primary library used to construct user interfaces in GNOME. It | ||
provides all the user interface controls, or widgets, used in a common | ||
graphical application. Its object-oriented API allows you to construct | ||
user interfaces without dealing with the low-level details of drawing and | ||
device interaction. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.42'), | ||
('Autotools', '20231222'), | ||
('Meson', '1.4.0'), | ||
('Ninja', '1.12.1'), | ||
('pkgconf', '2.2.0'), | ||
('GObject-Introspection', '1.80.1'), | ||
] | ||
|
||
dependencies = [ | ||
('ATK', '2.38.0'), | ||
('at-spi2-atk', '2.38.0'), | ||
('cairo', '1.18.0'), | ||
('Gdk-Pixbuf', '2.42.11'), | ||
('GLib', '2.80.4'), | ||
('Pango', '1.54.0'), | ||
('libepoxy', '1.5.10'), | ||
('X11', '20240607'), | ||
('FriBidi', '1.0.15'), | ||
('Wayland', '1.23.0'), | ||
] | ||
|
||
default_easyblock = 'MesonNinja' | ||
|
||
default_component_specs = { | ||
'sources': [SOURCELOWER_TAR_XZ], | ||
'start_dir': '%(namelower)s-%(version)s', | ||
} | ||
|
||
components = [ | ||
('GTK+', version, { | ||
'source_urls': [FTPGNOME_SOURCE], | ||
'checksums': ['50f89f615092d4dd01bbd759719f8bd380e5f149f6fd78a94725e2de112377e2'], | ||
}), | ||
('hicolor-icon-theme', '0.18', { | ||
'easyblock': 'MesonNinja', | ||
'source_urls': ['https://icon-theme.freedesktop.org/releases/'], | ||
'checksums': ['db0e50a80aa3bf64bb45cbca5cf9f75efd9348cf2ac690b907435238c3cf81d7'], | ||
}), | ||
('adwaita-icon-theme', '47.0', { | ||
'source_urls': ['https://ftp.gnome.org/pub/GNOME/sources/%(namelower)s/%(version_major)s'], | ||
'checksums': ['ad088a22958cb8469e41d9f1bba0efb27e586a2102213cd89cc26db2e002bdfe'], | ||
}), | ||
] | ||
|
||
postinstallcmds = ['gtk-update-icon-cache'] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/%s' % x for x in ['gtk3-demo', 'gtk3-demo-application', 'gtk3-icon-browser', 'gtk3-widget-factory', | ||
'gtk-builder-tool', 'gtk-launch', 'gtk-query-immodules-3.0', 'gtk-query-settings', | ||
'gtk-update-icon-cache']] + | ||
['lib/%s-%%(version_major)s.%s' % (x, SHLIB_EXT) for x in ['libgailutil', 'libgdk', 'libgtk']], | ||
'dirs': ['include/%s-%%(version_major)s.0' % x for x in ['gail', 'gtk']] + | ||
['share/icons/hicolor', 'share/icons/Adwaita'], | ||
} | ||
|
||
moduleclass = 'vis' |