mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-11 01:12:11 +01:00

new file: c/c-blosc/c-blosc-1.21.0-GCC-10.3.0.eb new file: g/gompi/gompi-2020e.eb new file: h/HDF5/HDF5-1.12.0-gompi-2020e.eb new file: l/libfabric/libfabric-1.11.0-GCCcore-10.3.0.eb new file: o/OpenMPI/OpenMPI-4.1.4-GCC-10.3.0-CUDA-11.3.1.eb new file: o/openPMD-api/openPMD-api-0.14.4-gompi-2020e.eb new file: p/PNGwriter/PNGwriter-0.7.0-GCC-10.3.0.eb
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
easyblock = "CMakeMake"
|
|
|
|
name = "PNGwriter"
|
|
version = "0.7.0"
|
|
|
|
homepage = 'https://github.com/pngwriter/pngwriter/'
|
|
description = """PNGwriter is a very easy to use open source graphics library
|
|
that uses PNG as its output format. The interface has been designed to be as
|
|
simple and intuitive as possible. It supports plotting and reading pixels in
|
|
the RGB (red, green, blue), HSV (hue, saturation, value/brightness) and CMYK
|
|
(cyan, magenta, yellow, black) colour spaces, basic shapes, scaling, bilinear
|
|
interpolation, full TrueType antialiased and rotated text support, bezier
|
|
curves, opening existing PNG images and more. Documentation in English
|
|
(and Spanish up to v0.5.4). Runs under Linux, Unix, Mac OS X and Windows.
|
|
Requires libpng and optionally FreeType2 for the text support."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '10.3.0'}
|
|
|
|
source_urls = ['https://github.com/pngwriter/pngwriter/archive/refs/tags/']
|
|
sources = ['%(version)s.tar.gz']
|
|
checksums = ['82d46eef109f434f95eba9cf5908710ae4e75f575fd3858178ad06e800152825']
|
|
|
|
builddependencies = [('CMake', '3.20.1')]
|
|
|
|
dependencies = [
|
|
('freetype', '2.10.4'),
|
|
('libpng', '1.6.37'),
|
|
]
|
|
|
|
separate_build_dir = True
|
|
|
|
sanity_check_paths = {
|
|
'files': ['include/pngwriter.h', 'lib/libPNGwriter.a'],
|
|
'dirs': ['include', 'lib']
|
|
}
|
|
|
|
moduleclass = 'lib'
|