-
Notifications
You must be signed in to change notification settings - Fork 707
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 #18600 from stefan-wolfsheimer/gnuplot-5.4.8-GCCco…
…re-12.3.0 {vis}[GCCcore/12.3.0] gnuplot v5.4.8
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
easybuild/easyconfigs/g/gnuplot/gnuplot-5.4.8-GCCcore-12.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,45 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'gnuplot' | ||
version = '5.4.8' | ||
|
||
homepage = 'http://gnuplot.sourceforge.net' | ||
description = """Portable interactive, function plotting utility""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
source_urls = [('https://sourceforge.net/projects/gnuplot/files/gnuplot/%(version)s', 'download')] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['931279c7caad1aff7d46cb4766f1ff41c26d9be9daf0bcf0c79deeee3d91f5cf'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('pkgconf', '1.9.5'), | ||
('Autotools', '20220317'), | ||
] | ||
|
||
dependencies = [ | ||
('ncurses', '6.4'), | ||
('cairo', '1.17.8'), | ||
('libjpeg-turbo', '2.1.5.1'), | ||
('libpng', '1.6.39'), | ||
('libgd', '2.3.3'), | ||
('Pango', '1.50.14'), | ||
('libcerf', '2.3'), | ||
('X11', '20230603'), | ||
('Qt5', '5.15.10'), | ||
('Lua', '5.4.6'), | ||
] | ||
|
||
preconfigopts = 'autoreconf && ' | ||
|
||
configopts = '--with-qt=qt5 --without-latex --disable-wxwidgets' | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/gnuplot'], | ||
'dirs': [] | ||
} | ||
# make sure that pdf terminal type is available | ||
sanity_check_commands = ["gnuplot -e 'set terminal pdf'"] | ||
|
||
moduleclass = 'vis' |